Skip to content

Commit

Permalink
ci: Disable wasi test except on stable.
Browse files Browse the repository at this point in the history
This results in an error when building with 1.64 despite `AsFd`
having been added in 1.63. It was fixed in 1.66:

rust-lang/rust#103306
  • Loading branch information
waywardmonkeys committed Aug 10, 2023
1 parent e784c4b commit 716ae36
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ jobs:
if: ${{ matrix.rust == 'stable' }}
run: cargo clippy -- -D warnings

# This fails on 1.64, but works on 1.66 and later.
# https://github.com/rust-lang/rust/issues/103306
- name: Test run targeting WASI
if: ${{ matrix.rust == 'stable' }}
run: |
curl https://wasmtime.dev/install.sh -sSf | bash
source ~/.bashrc
Expand Down

0 comments on commit 716ae36

Please sign in to comment.