ci: add Drone CI
This commit is contained in:
parent
de6e195f6b
commit
43b9b1a9b3
23
.drone.yml
Normal file
23
.drone.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue