Skip to content
This repository was archived by the owner on Sep 8, 2025. It is now read-only.

Commit c924073

Browse files
authored
Merge pull request #126 from alexcrichton/merge-again
Merge with upstream
2 parents d4e5bfe + 1135940 commit c924073

178 files changed

Lines changed: 6460 additions & 1223 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/main.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -433,17 +433,18 @@ jobs:
433433
- uses: ./.github/actions/cancel-on-failure
434434
if: failure()
435435

436-
fiber_tests:
437-
name: wasmtime-fiber tests
436+
special_tests:
437+
name: One-off special tests
438438
runs-on: ubuntu-latest
439-
env:
440-
CARGO_NDK_VERSION: 2.12.2
439+
needs: determine
440+
if: needs.determine.outputs.run-full
441441
steps:
442442
- uses: actions/checkout@v4
443443
with:
444444
submodules: true
445445
- uses: ./.github/actions/install-rust
446446
- run: cargo test -p wasmtime-fiber --no-default-features
447+
- run: cargo test -p cranelift-tools --test logged-filetests
447448

448449
# common logic to cancel the entire run if this job fails
449450
- uses: ./.github/actions/cancel-on-failure
@@ -666,7 +667,7 @@ jobs:
666667
# Rust programs. Note that this only executes if the `determine` step told
667668
# us to test the capi which is off-by-default for PRs.
668669
- run: rustup target add wasm32-wasip2 # wasip2 target needed by example programs
669-
- run: cmake -Sexamples -Bexamples/build -DBUILD_SHARED_LIBS=OFF
670+
- run: cmake -Sexamples -Bexamples/build -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=ON
670671
- run: cmake --build examples/build --config Debug
671672
- run: cmake -E env CTEST_OUTPUT_ON_FAILURE=1 cmake --build examples/build --config Debug --target RUN_TESTS
672673
if: runner.os == 'Windows'
@@ -1200,7 +1201,7 @@ jobs:
12001201
- cargo_vet
12011202
- doc
12021203
- micro_checks
1203-
- fiber_tests
1204+
- special_tests
12041205
- clippy
12051206
- monolith_checks
12061207
- platform_checks

0 commit comments

Comments
 (0)