From f0021cb2232cca0d6980cf266c7b065bc9d1cd89 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Tue, 17 Dec 2019 15:22:50 +0200 Subject: [PATCH] Try continue-on-error: true --- .github/workflows/spec-tests.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/spec-tests.yml b/.github/workflows/spec-tests.yml index 4e915e9..5eb21ae 100644 --- a/.github/workflows/spec-tests.yml +++ b/.github/workflows/spec-tests.yml @@ -50,10 +50,11 @@ jobs: - name: Build run: | cmake --build build - #- name: Run spec tests - # run: | - # cd test - # ./run-spec-test.py + - name: Run spec tests + continue-on-error: true + run: | + cd test + ./run-spec-test.py - name: Run WASI tests run: | cd test @@ -80,6 +81,7 @@ jobs: cmake --build build --config Release cp ./build/Release/wasm3.exe ./build/ - name: Run spec tests + continue-on-error: true run: | cd test python run-spec-test.py