49 lines
939 B
YAML
49 lines
939 B
YAML
---
|
|
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
|
|
---
|
|
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
|
|
...
|