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

Commit c513a45

Browse files
authored
Merge pull request #244 from alexcrichton/merge
Merge with main
2 parents d025f02 + 266fa5d commit c513a45

296 files changed

Lines changed: 10496 additions & 9968 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/actions/install-rust/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ runs:
2828
elif [ "${{ inputs.toolchain }}" = "msrv" ]; then
2929
echo "version=1.$msrv.0" >> "$GITHUB_OUTPUT"
3030
elif [ "${{ inputs.toolchain }}" = "wasmtime-ci-pinned-nightly" ]; then
31-
echo "version=nightly-2025-07-08" >> "$GITHUB_OUTPUT"
31+
echo "version=nightly-2025-08-06" >> "$GITHUB_OUTPUT"
3232
else
3333
echo "version=${{ inputs.toolchain }}" >> "$GITHUB_OUTPUT"
3434
fi

.github/workflows/main.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -398,6 +398,14 @@ jobs:
398398
- name: wasmtime-wasi-http
399399
checks: |
400400
-p wasmtime-wasi-http --no-default-features
401+
402+
- name: wasmtime-wasi
403+
checks: |
404+
-p wasmtime-wasi --no-default-features
405+
-p wasmtime-wasi --no-default-features --features p0
406+
-p wasmtime-wasi --no-default-features --features p1
407+
-p wasmtime-wasi --no-default-features --features p2
408+
-p wasmtime-wasi --no-default-features --features p3
401409
runs-on: ubuntu-latest
402410
steps:
403411
- uses: actions/checkout@v4
@@ -582,10 +590,8 @@ jobs:
582590
with:
583591
toolchain: wasmtime-ci-pinned-nightly
584592

585-
# Check that `pulley-interpreter` compiles with tail calls enabled. Don't
586-
# actually run the tests with tail calls enabled, because they are not yet
587-
# implemented in rustc and cause an ICE.
588-
- run: cargo check -p pulley-interpreter --all-features
593+
# Check that `pulley-interpreter` works with tail calls enabled.
594+
- run: cargo test -p pulley-interpreter --all-features
589595
env:
590596
RUSTFLAGS: "--cfg pulley_tail_calls"
591597
- run: cargo check -p pulley-interpreter --all-features

0 commit comments

Comments
 (0)