From 31d2af86b00faa57c495810c20556e0e78636cd0 Mon Sep 17 00:00:00 2001 From: Maxime Mangel Date: Thu, 28 Sep 2023 22:19:05 +0200 Subject: [PATCH] Try running rust tests in sequence --- .github/workflows/build.yml | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 693c4a718e..75e086beb9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -102,12 +102,12 @@ jobs: # run: ./build.sh test python --skip-fable-library - # Separate build job for Rust (will run in parallel) + # Separate build job for Rust build-rust: runs-on: ubuntu-latest - strategy: - matrix: - test: ["default", "no_std", "threaded"] + # strategy: + # matrix: + # test: ["default", "no_std", "threaded"] steps: - uses: actions/checkout@v2 @@ -128,9 +128,16 @@ jobs: - name: Fable Library - Rust run: ./build.sh fable-library --rust - - name: Fable Tests - Rust - run: ./build.sh test rust --skip-fable-library --${{ matrix.test }} + - name: Fable Tests - Rust default + run: ./build.sh test rust --skip-fable-library + + - name: Fable Tests - Rust no_std + run: ./build.sh test rust --skip-fable-library --no-std + + - name: Fable Tests - Rust threaded + run: ./build.sh test rust --skip-fable-library --threaded + # Separate build job for Dart build-dart: runs-on: ubuntu-latest