From 716ae3646b0f6f87c5209ca348c4995bba9ab213 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Thu, 10 Aug 2023 11:09:05 +0700 Subject: [PATCH] ci: Disable wasi test except on stable. This results in an error when building with 1.64 despite `AsFd` having been added in 1.63. It was fixed in 1.66: https://github.com/rust-lang/rust/issues/103306 --- .github/workflows/ci.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index c8096871..93b71c87 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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