Files
TestCI/.drone.yml
Kaladaran e4d0579006
Some checks failed
continuous-integration/drone/push Build was killed
Update '.drone.yml'
2021-09-07 11:43:50 +02:00

40 lines
488 B
YAML

---
kind: pipeline
type: docker
name: default-arm64
platform:
arch: arm64
steps:
- name: firststep
image: alpine
commands:
- echo hello world
- cat README.md
---
kind: pipeline
type: docker
name: default-amd64
platform:
arch: amd64
steps:
- name: firststep
image: alpine
commands:
- echo hello world
- cat README.md
---
kind: pipeline
type: kubernetes
name: default-kube
steps:
- name: firststep
image: alpine
commands:
- echo hello world
- cat README.md