]> Nishi Git Mirror - gwion.git/commitdiff
upadte
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Fri, 21 Feb 2020 19:02:58 +0000 (20:02 +0100)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Fri, 21 Feb 2020 19:02:58 +0000 (20:02 +0100)
.github/workflows/linux.yml

index 059d8e537b904eac969046760fdf13d9314c9133..a7e3d930997c8552a365522704baa37e12209a8a 100644 (file)
@@ -1,4 +1,3 @@
-
 name: Linux
 
 on:
@@ -9,7 +8,7 @@ on:
 
 jobs:
   build:
-    name: ${{ matrix.double && 'double' || ''}}
+    name: ${{ matrix.cc }} ${{ matrix.double && 'double' || 'float'}}
     runs-on: ubuntu-latest
     if: "!contains(github.event.head_commit.message, '[skip ci]')"
     strategy:
@@ -18,10 +17,8 @@ jobs:
         double: [0, 1]
 
     steps:
-    - name: Create testing directory
-      run: mkdir ${{ runner.temp }}/test
-
-    - uses: fennecdjay/gwion-action@v4
+    - name: Build Gwion
+      uses: fennecdjay/gwion-action@v4
       with:
         USE: ${{ matrix.double }}
         RUN: true
@@ -32,19 +29,3 @@ jobs:
         VALGRIND: NO_VALGRIND
         USE_MEMCHECK: 0
         SEVERITY: 3
-#        GWION_TEST_DIR: ${{ runner.temp }}/test
-#    - 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 ${{ runner.temp }}
-#      env:
-#        VALGRIND: NO_VALGRIND
-#        USE_MEMCHECK: 0
-#        SEVERITY: 3
-#      run: export GWION_TEST_DIR=${{ runner.temp }}/tmp/test; mkdir $GWION_TEST_DIR && make test