From: Jérémie Astor Date: Fri, 21 Feb 2020 19:02:58 +0000 (+0100) Subject: upadte X-Git-Tag: nightly~1811 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=0c325a26b28981677250344900d27e9f31768a9a;p=gwion.git upadte --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 059d8e53..a7e3d930 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -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