From 30c5e8c084f49274e2ec6b22bb86e55f898a15ce Mon Sep 17 00:00:00 2001 From: Pat Hickey Date: Mon, 1 Feb 2021 16:44:06 -0800 Subject: [PATCH] DEBUG: turn off fail-fast for wasmtime build matrix, and test wasi-cap-std-sync first the wasi-cap-std-sync test is designed to isolate some weird CI behavior with EPERM on a preopen --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e8ebbddc0e..8843aec9cf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -387,6 +387,7 @@ jobs: name: Build wasmtime runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: include: - build: x86_64-linux @@ -461,6 +462,10 @@ jobs: # Build `libwasmtime.so` - run: $CENTOS cargo build --release --manifest-path crates/c-api/Cargo.toml + - run: | + $CENTOS cargo test \ + --release \ + -p wasi-cap-std-sync # Test what we just built. #