1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-09-11 13:00:41 +03:00
kakoune/.builds/freebsd.yml
Maxime Coste df80aef04b Bump freebsd build to latest
The freebsd/13.x image seems to be failing at the moment
2024-08-14 20:30:31 +10:00

18 lines
388 B
YAML

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