From 43b9b1a9b3ab6b65c1977fabb0c615ade670c380 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 30 Sep 2020 00:38:32 +0200 Subject: [PATCH] ci: add Drone CI --- .drone.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..b94bdc3 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,23 @@ +kind: pipeline +name: test correctness + +steps: + - name: build & check + image: oblique/archlinux-yay + pull: always + commands: + - > + sudo -u aur yay -Syu --noconfirm --needed + base base-devel criterion glib2 autoconf-archive + - ./bootstrap + - make + - make check + + - name: detailed log + image: oblique/archlinux-yay + pull: always + commands: + - cat ./test-suite.log + when: + status: + - failure