Skip to content

Commit

Permalink
fix(CI): install wasm-opt for x86 macos (#3774)
Browse files Browse the repository at this point in the history
  • Loading branch information
ukint-vs authored Mar 3, 2024
1 parent ef08a10 commit 0b81184
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ jobs:
- name: "Install: protobuf"
run: brew install protobuf

- name: "Install: binaryen"
run: |
sudo wget -c https://github.com/WebAssembly/binaryen/releases/download/$BINARYEN_VERSION/binaryen-$BINARYEN_VERSION-x86_64-macos.tar.gz -O - | sudo tar -xz -C .
sudo cp binaryen-$BINARYEN_VERSION/bin/* /usr/local/bin
sudo cp binaryen-$BINARYEN_VERSION/lib/libbinaryen.dylib /usr/local/lib
- name: "Install: Rust toolchain"
uses: dsherret/rust-toolchain-file@v1

Expand Down

0 comments on commit 0b81184

Please sign in to comment.