From f9e05efdf8da3c80cc27047bc13c7db931deedb0 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Astor?= Date: Sat, 7 Dec 2019 00:03:59 +0100 Subject: [PATCH] :wrench: winaction? --- .github/workflows/win.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/win.yml diff --git a/.github/workflows/win.yml b/.github/workflows/win.yml new file mode 100644 index 00000000..c7926593 --- /dev/null +++ b/.github/workflows/win.yml @@ -0,0 +1,28 @@ + +name: Windows + +on: [push] + +jobs: + build: + runs-on: windows-latest + strategy: + matrix: + 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 USE_DOUBLE=${{ matrix.double }} + - name: make test ${{ runner.temp }} + env: + VALGRIND: NO_VALGRIND + USE_MEMCHECK: 0 + SEVERITY: 3 + run: export GWION_TEST_DIR=${{ runner.tmp }}/tmp/test; mkdir $GWION_TEST_DIR && make test -- 2.43.0