Files
TestCI/.drone.yml
Kaladaran fb631bcdfa
All checks were successful
continuous-integration/drone Build is passing
Update '.drone.yml'
2021-08-21 01:12:49 +02:00

28 lines
339 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