Skip to content

Commit

Permalink
waforthc: Fix wabt dependency for now
Browse files Browse the repository at this point in the history
  • Loading branch information
remko committed Jun 17, 2023
1 parent 20babd5 commit 98b7fd5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@ runs:
with:
node-version: 17
cache: 'yarn'
# - if: runner.os == 'macOS'
# run: brew install wabt
# shell: bash
- if: runner.os == 'macOS'
run: brew install wabt
run: |
curl -L -s https://github.com/WebAssembly/wabt/releases/download/1.0.31/wabt-1.0.31-macos-12.tar.gz | tar xvz -C /tmp
sudo mv /tmp/wabt-1.0.31/bin/* /usr/local/bin
sudo mv /tmp/wabt-1.0.31/include/* /usr/local/include
sudo mv /tmp/wabt-1.0.31/lib/*.a /usr/local/lib
sudo mv /tmp/wabt-1.0.31/share/wabt /usr/local/share
shell: bash
- if: runner.os == 'Linux'
run: |
Expand Down

0 comments on commit 98b7fd5

Please sign in to comment.