From 98b7fd59d46c078e5200b4e5d614ad98927a0b4c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Remko=20Tron=C3=A7on?= Date: Sat, 17 Jun 2023 08:00:25 +0200 Subject: [PATCH] waforthc: Fix wabt dependency for now --- .github/actions/setup/action.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index c8676ff..2c7bb78 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -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: |