cpp-hello-world/.drone.yml

24 lines
234 B
YAML

kind: pipeline
name: test-on-amd64
platform:
arch: amd64
steps:
- name: test
image: gcc
commands:
- make
---
kind: pipeline
name: test-on-arm64
platform:
arch: arm64
steps:
- name: test
image: gcc
commands:
- make