1
1
mirror of https://github.com/mawww/kakoune.git synced 2024-07-14 16:10:24 +03:00
kakoune/.builds/debian-arm64.yml
2024-02-29 20:24:32 +11:00

21 lines
390 B
YAML

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