From bed5f13e0c50c44c8b98f5f758ba487a198931ec Mon Sep 17 00:00:00 2001 From: Henry Gressmann Date: Fri, 26 Jan 2024 15:25:36 +0100 Subject: ci: fix ci Signed-off-by: Henry Gressmann --- .github/workflows/test.yaml | 19 +++++++++++++++---- 1 file changed, 15 insertions(+), 4 deletions(-) (limited to '.github/workflows') diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 05f7397..6f6fc10 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -16,8 +16,14 @@ jobs: with: submodules: true - - name: Install stable Rust toolchain - run: rustup update stable + - name: Install stable Rust toolchain & Binaryen + run: | + rustup update stable + rustup update nightly + sudo apt-get install -y binaryen + + - name: Build wasm + run: ./examples/rust/build.sh - name: Build (stable) run: cargo +stable build --workspace @@ -37,8 +43,13 @@ jobs: with: submodules: true - - name: Install nightly Rust toolchain - run: rustup update nightly + - name: Install nightly Rust toolchain & Binaryen + run: | + rustup update nightly + sudo apt-get install -y binaryen + + - name: Build wasm + run: ./examples/rust/build.sh - name: Build (nightly, no default features) run: cargo +nightly build --workspace --no-default-features -- cgit v1.3.1