• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1env:
2  CIRRUS_CLONE_DEPTH: 1
3
4freebsd_13_task:
5  freebsd_instance:
6    image: freebsd-13-0-release-amd64
7  install_script:
8    pkg install -y bison gmake pkgconf
9  build_script:
10    gmake
11  test_script:
12    gmake check
13
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
24