diff options
Diffstat (limited to 'minici.yaml')
-rw-r--r-- | minici.yaml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/minici.yaml b/minici.yaml new file mode 100644 index 0000000..4a6d65d --- /dev/null +++ b/minici.yaml @@ -0,0 +1,15 @@ +job build: + shell: + - make CC=gcc CFLAGS="-Werror -Wno-deprecated-declarations" CXXFLAGS="-Werror -Wno-deprecated-declarations" + artifact erebos: + path: build/src/erebos + +job clang: + shell: + - make CC=clang CFLAGS="-Werror -Wno-deprecated-declarations" CXXFLAGS="-Werror -Wno-deprecated-declarations" + +job test: + uses: + - build.erebos + shell: + - erebos-tester -v |