ci: add `distcheck` pipeline

This commit is contained in:
Bruno BELANYI 2020-09-30 13:06:53 +02:00
parent babb4c8df3
commit 2073a0504a
1 changed files with 25 additions and 0 deletions

View File

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