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