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
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