Make a drone yml thingy

main
Nightly 2022-09-21 19:36:39 +02:00
parent e16a87e264
commit 9f0f31cd37
1 changed files with 28 additions and 0 deletions

28
.drone.yml Normal file
View File

@ -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