From 1800e7347212e1a532df83a7c15d4c224aa1d310 Mon Sep 17 00:00:00 2001 From: "Tobin C. Harding" Date: Fri, 4 Jul 2025 08:06:27 +1000 Subject: [PATCH] CI: Re-enable WASM job Un-comment the wasm job now that WASM builds again - maybe. --- .github/workflows/rust.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 1ce314a97..09cbf2882 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -253,19 +253,19 @@ jobs: - name: "Run test on i686" run: cargo test --target i686-unknown-linux-gnu -# WASM: -# name: WASM - stable toolchain -# runs-on: ubuntu-latest -# strategy: -# fail-fast: false -# # Note we do not use the recent lock file for wasm testing. -# steps: -# - name: "Checkout repo" -# uses: actions/checkout@v4 -# - name: "Select toolchain" -# uses: dtolnay/rust-toolchain@stable -# - name: "Run wasm script" -# run: ./contrib/wasm.sh + WASM: + name: WASM - stable toolchain + runs-on: ubuntu-latest + strategy: + fail-fast: false + # Note we do not use the recent lock file for wasm testing. + steps: + - name: "Checkout repo" + uses: actions/checkout@v4 + - name: "Select toolchain" + uses: dtolnay/rust-toolchain@stable + - name: "Run wasm script" + run: ./contrib/wasm.sh NoStd: # 1 job, run no-std test from script. name: no-std - nightly toolchain