869e89b3e5
Build and test (using both clang and gcc) on Debian stable x86_64, FreeBSD and Debian unstable arm64.
19 lines
403 B
YAML
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
|