mirror of
https://github.com/mawww/kakoune.git
synced 2024-11-22 13:28:32 +03:00
df80aef04b
The freebsd/13.x image seems to be failing at the moment
18 lines
388 B
YAML
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
|