From 81f7d30ddd6888bcb57db7cc3c00db3aac04ddb5 Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 28 Oct 2020 17:54:51 +0100 Subject: [PATCH] ci: add Drone CI --- .drone.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..26c4505 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,31 @@ +--- +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 + - make + - make check -B + + - name: notify + image: plugins/matrix + settings: + homeserver: + from_secret: matrix_homeserver + roomid: + from_secret: matrix_roomid + username: + from_secret: matrix_username + password: + from_secret: matrix_password + trigger: + status: + - failure + - success +...