kakoune/.builds/debian.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

20 lines
376 B
YAML

image: debian/stable
packages:
- clang
- gcc
- make
tasks:
- clang-build: |
cd kakoune
CXX=clang++ make -j$(nproc)
- clang-test: |
cd kakoune
LC_ALL=C.utf8 make test
- gcc-build: |
cd kakoune
make clean
CXX=g++ make -j$(nproc)
- gcc-test: |
cd kakoune
LC_ALL=C.utf8 make test