kakoune/.builds/freebsd.yml
Maxime Coste 869e89b3e5 Add builds.sr.ht configurations
Build and test (using both clang and gcc) on Debian stable x86_64,
FreeBSD and Debian unstable arm64.
2024-01-21 16:04:37 +11:00

19 lines
403 B
YAML

image: freebsd/13.x
packages:
- gmake
- gcc
tasks:
- build-clang: |
cd kakoune
CXX=clang++ gmake -j$(sysctl -n hw.ncpu)
- test-clang: |
cd kakoune
LC_ALL=en_US.UTF-8 gmake test
- build-gcc: |
cd kakoune
gmake clean
CXX=g++ gmake -j$(sysctl -n hw.ncpu)
- test-gcc: |
cd kakoune
LC_ALL=en_US.UTF-8 gmake test