summaryrefslogtreecommitdiff
path: root/.builds/freebsd.yml
blob: 11612874681c90187b23fe16ac3493a7c2d39fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
image: freebsd/latest
packages:
    - gcc
tasks:
    - build-clang: |
        cd kakoune
        make CXX=clang++ -j$(sysctl -n hw.ncpu)
    - test-clang: |
        cd kakoune
        LC_ALL=en_US.UTF-8 make test
    - build-gcc: |
        cd kakoune
        make clean
        make CXX=g++ -j$(sysctl -n hw.ncpu)
    - test-gcc: |
        cd kakoune
        LC_ALL=en_US.UTF-8 make test