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
This commit is contained in:
Pat Hickey
2021-02-01 16:44:06 -08:00
parent f17bff5490
commit 30c5e8c084

View File

@@ -387,6 +387,7 @@ jobs:
name: Build wasmtime name: Build wasmtime
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
fail-fast: false
matrix: matrix:
include: include:
- build: x86_64-linux - build: x86_64-linux
@@ -461,6 +462,10 @@ jobs:
# Build `libwasmtime.so` # Build `libwasmtime.so`
- run: $CENTOS cargo build --release --manifest-path crates/c-api/Cargo.toml - 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. # Test what we just built.
# #