Skip to content

Commit

Permalink
chore: Bump Binaryen (wasm-opt) to version 121
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Dec 22, 2024
1 parent bfb58f9 commit 0cd28e9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,7 @@ jobs:
uses: sigoden/install-binary@v1
with:
repo: WebAssembly/binaryen
tag: version_120
tag: version_121
name: wasm-opt

- name: Install node packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_extension_dockerfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
uses: sigoden/install-binary@v1
with:
repo: WebAssembly/binaryen
tag: version_120
tag: version_121
name: wasm-opt

- name: Install fclones
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
uses: sigoden/install-binary@v1
with:
repo: WebAssembly/binaryen
tag: version_120
tag: version_121
name: wasm-opt

- name: Build
Expand Down
6 changes: 3 additions & 3 deletions web/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ FROM node:22

# Installing wasm-opt from GitHub:
# Keep the version number in sync with the ones in the Actions workflows!
RUN wget --progress=:giga https://github.com/WebAssembly/binaryen/releases/download/version_120/binaryen-version_120-x86_64-linux.tar.gz
RUN tar xzf binaryen-version_120-x86_64-linux.tar.gz binaryen-version_120/bin/wasm-opt
RUN mv binaryen-version_120/bin/wasm-opt /usr/local/bin
RUN wget --progress=:giga https://github.com/WebAssembly/binaryen/releases/download/version_121/binaryen-version_121-x86_64-linux.tar.gz
RUN tar xzf binaryen-version_121-x86_64-linux.tar.gz binaryen-version_121/bin/wasm-opt
RUN mv binaryen-version_121/bin/wasm-opt /usr/local/bin

# Installing Rust using rustup:
RUN wget 'https://sh.rustup.rs' --quiet -O- | sh -s -- -y --profile minimal --target wasm32-unknown-unknown
Expand Down

0 comments on commit 0cd28e9

Please sign in to comment.