Skip to content

Commit

Permalink
chore: Bump Binaryen to version 119
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Sep 9, 2024
1 parent 6451131 commit 544270d
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_118
tag: version_119
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_118
tag: version_119
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 @@ -71,7 +71,7 @@ jobs:
uses: sigoden/install-binary@v1
with:
repo: WebAssembly/binaryen
tag: version_118
tag: version_119
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:20

# 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_118/binaryen-version_118-x86_64-linux.tar.gz
RUN tar xzf binaryen-version_118-x86_64-linux.tar.gz binaryen-version_118/bin/wasm-opt
RUN mv binaryen-version_118/bin/wasm-opt /usr/local/bin
RUN wget --progress=:giga https://github.com/WebAssembly/binaryen/releases/download/version_119/binaryen-version_119-x86_64-linux.tar.gz
RUN tar xzf binaryen-version_119-x86_64-linux.tar.gz binaryen-version_119/bin/wasm-opt
RUN mv binaryen-version_119/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 544270d

Please sign in to comment.