]> Nishi Git Mirror - gwion.git/commitdiff
Create gwion.yml
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Fri, 6 Dec 2019 21:01:07 +0000 (22:01 +0100)
committerGitHub <noreply@github.com>
Fri, 6 Dec 2019 21:01:07 +0000 (22:01 +0100)
.github/workflows/gwion.yml [new file with mode: 0644]

diff --git a/.github/workflows/gwion.yml b/.github/workflows/gwion.yml
new file mode 100644 (file)
index 0000000..e9caf0b
--- /dev/null
@@ -0,0 +1,32 @@
+
+name: C/C++ CI
+
+on: [push]
+
+jobs:
+  build:
+
+    runs-on: ${{ matrix.os }}
+    strategy:
+      matrix:
+        os: [ubuntu-latest, macos-latest, windows-latest]
+        cc: [gcc, clang]
+        double: [0, 1]
+
+    steps:
+    - uses: actions/checkout@v1
+    - name: submodules
+      run: git submodule update --init util ast
+    - name: make
+      env:
+         USE_DOUBLE: ${{ matrix.double }}
+         CFLAGS: -fsanitize=address -fno-omit-frame-pointer
+         LDFLAGS: -fsanitize=address -fno-omit-frame-pointer
+      run: make CC=${{ matrix.cc }} USE_DOUBLE=${{ matrix.double }}
+    - name: make test
+      env:
+        GWION_TEST_DIR: /home/runner/work/Gwion/Gwion/tmp_test
+        VALGRIND: NO_VALGRIND
+        USE_MEMCHECK: 0
+        SEVERITY: 3
+      run: mkdir tmp_test && echo $PWD && make test