summaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: d2dc34e1d58dbd2a5ba76f4e4c93c833462da86b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
env:
  CIRRUS_CLONE_DEPTH: 1

freebsd_13_task:
  freebsd_instance:
    image: freebsd-13-0-release-amd64
  install_script:
    pkg install -y bison gmake pkgconf
  build_script:
    gmake
  test_script:
    gmake check

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