summaryrefslogtreecommitdiff
path: root/.cirrus.yml
blob: 4f6311f503e15a9d92e64f107401a5f5e20a11aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# TODO move to Github Actions after https://github.com/actions/runner/issues/385
freebsd_task:
    freebsd_instance:
        image_family: freebsd-14-2
    matrix:
        - name: freebsd_clang
          env:
              CXX: clang++
        - name: freebsd_gcc
          gcc_script: pkg install -y gcc
          env:
              CXX: g++
    test_script: make CXX=$CXX -j$(sysctl -n hw.ncpu) test
    env:
        LC_ALL: en_US.UTF-8