Files
TestCI/.drone.yml
2021-08-21 01:08:24 +02:00

28 lines
327 B
YAML

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