From 2073a0504a13f49027314a38fbda8d3756a983fa Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 30 Sep 2020 13:06:53 +0200 Subject: [PATCH] ci: add `distcheck` pipeline --- .drone.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.drone.yml b/.drone.yml index b94bdc3..e3eb5a7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,4 @@ +--- kind: pipeline name: test correctness @@ -21,3 +22,27 @@ steps: when: status: - failure +--- +kind: pipeline +name: test distribution + +steps: + - name: distcheck + image: oblique/archlinux-yay + pull: always + commands: + - > + sudo -u aur yay -Syu --noconfirm --needed + base base-devel criterion glib2 autoconf-archive + - ./bootstrap + - make distcheck + + - name: detailed log + image: oblique/archlinux-yay + pull: always + commands: + - cat jitters-*/_build/sub/test-suite.log + when: + status: + - failure +...