2019-11-20 22:11:33 +01:00
|
|
|
env:
|
|
|
|
CIRRUS_CLONE_DEPTH: 1
|
|
|
|
|
2021-10-31 14:09:31 +01:00
|
|
|
freebsd_13_task:
|
2019-11-20 22:11:33 +01:00
|
|
|
freebsd_instance:
|
2021-10-31 14:09:31 +01:00
|
|
|
image: freebsd-13-0-release-amd64
|
2019-11-20 22:11:33 +01:00
|
|
|
install_script:
|
|
|
|
pkg install -y bison gmake pkgconf
|
|
|
|
build_script:
|
|
|
|
gmake
|
2020-03-04 06:40:00 +01:00
|
|
|
test_script:
|
|
|
|
gmake check
|
2019-11-20 22:11:33 +01:00
|
|
|
|
|
|
|
linux_gcc_task:
|
|
|
|
container:
|
|
|
|
image: gcc:latest
|
|
|
|
install_script:
|
|
|
|
- apt-get update
|
|
|
|
- apt-get -y install bison flex
|
|
|
|
build_script:
|
|
|
|
- make
|
|
|
|
test_script:
|
|
|
|
- make check
|