1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-07-14 16:10:24 +03:00
kakoune/.builds/freebsd.yml
2024-02-29 20:24:32 +11:00

18 lines
386 B
YAML

image: freebsd/13.x
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