1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-11-25 21:16:38 +03:00
kakoune/.builds/debian.yml

20 lines
376 B
YAML
Raw Normal View History

image: debian/stable
packages:
- clang
- gcc
- make
tasks:
- clang-build: |
cd kakoune
2024-02-29 12:24:32 +03:00
make CXX=clang++ -j$(nproc)
- clang-test: |
cd kakoune
LC_ALL=C.utf8 make test
- gcc-build: |
cd kakoune
make clean
2024-02-29 12:24:32 +03:00
make CXX=g++ -j$(nproc)
- gcc-test: |
cd kakoune
LC_ALL=C.utf8 make test