From 9f0f31cd3744506e0c280dffad10f162a9196433 Mon Sep 17 00:00:00 2001 From: nightlymania Date: Wed, 21 Sep 2022 19:36:39 +0200 Subject: [PATCH] Make a drone yml thingy --- .drone.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..c10ca86 --- /dev/null +++ b/.drone.yml @@ -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 \ No newline at end of file