Make a drone yml thingy
parent
e16a87e264
commit
9f0f31cd37
|
@ -0,0 +1,28 @@
|
|||
kind: pipeline
|
||||
name: test-on-amd64
|
||||
|
||||
platform:
|
||||
arch: amd64
|
||||
|
||||
steps:
|
||||
- name: test
|
||||
image: gcc
|
||||
commands:
|
||||
- ./configure
|
||||
- make
|
||||
- make test
|
||||
|
||||
---
|
||||
kind: pipeline
|
||||
name: test-on-arm64
|
||||
|
||||
platform:
|
||||
arch: arm64
|
||||
|
||||
steps:
|
||||
- name: test
|
||||
image: gcc
|
||||
commands:
|
||||
- ./configure
|
||||
- make
|
||||
- make test
|
Loading…
Reference in New Issue