Skip to content

Commit

Permalink
Try running rust tests in sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime Mangel committed Sep 28, 2023
1 parent df3adb1 commit 31d2af8
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down

0 comments on commit 31d2af8

Please sign in to comment.