blob: d2dc34e1d58dbd2a5ba76f4e4c93c833462da86b [file] [log] [blame]
Ed Maste9f86aff2019-11-20 21:11:33 +00001env:
2 CIRRUS_CLONE_DEPTH: 1
3
Ahmad Fatoum4eda2592021-10-31 14:09:31 +01004freebsd_13_task:
Ed Maste9f86aff2019-11-20 21:11:33 +00005 freebsd_instance:
Ahmad Fatoum4eda2592021-10-31 14:09:31 +01006 image: freebsd-13-0-release-amd64
Ed Maste9f86aff2019-11-20 21:11:33 +00007 install_script:
8 pkg install -y bison gmake pkgconf
9 build_script:
10 gmake
David Gibson62cb4ad2020-03-04 16:40:00 +110011 test_script:
12 gmake check
Ed Maste9f86aff2019-11-20 21:11:33 +000013
14linux_gcc_task:
15 container:
16 image: gcc:latest
17 install_script:
18 - apt-get update
19 - apt-get -y install bison flex
20 build_script:
21 - make
22 test_script:
23 - make check