From 0152486ea6cf2359ade9b3eaf4785e5facf85d80 Mon Sep 17 00:00:00 2001 From: Volodymyr Shymanskyy Date: Mon, 13 Apr 2020 21:04:19 +0300 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 100217c..153c92e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,10 +12,6 @@ jobs: fail-fast: false matrix: - compiler: [gcc, clang] - flags: ["", "-m32"] - build_type: ["-DCMAKE_BUILD_TYPE=Debug", ""] - config: - {target: clang, cc: clang, } - {target: clang-x86, cc: clang, flags: -DCMAKE_C_FLAGS="-m32", install: "gcc-multilib" } @@ -61,13 +57,9 @@ jobs: run: | cmake --build build - name: Run spec tests - run: | - cd test - ./run-spec-test.py + run: cd test && python3 run-spec-test.py - name: Run WASI tests - run: | - cd test - ./run-wasi-test.py + run: cd test && python3 run-wasi-test.py build-win: runs-on: windows-latest