Add build manifest for CI

This commit is contained in:
Camden Dixie O'Brien 2024-11-02 17:03:05 +00:00
parent 7f5aa1766c
commit e4a9ac6ad8

18
.build.yml Normal file
View File

@ -0,0 +1,18 @@
image: alpine/edge
packages:
- clang
- cmake
- compiler-rt
- ninja
sources:
- https://git.sr.ht/~cdo/regex-engine
tasks:
- configure: |
cd regex-engine
cmake -GNinja -Bbuild -DSANITIZERS=on -DCMAKE_BUILD_TYPE=Debug -DCMAKE_C_COMPILER=clang
- build: |
cd regex-engine
scripts/build.sh
- test: |
cd regex-engine
scripts/test.sh