Skip to content

Commit

Permalink
Try to rely on binaryen 116 in the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
peaBerberian committed Feb 5, 2024
1 parent 7e484e2 commit a325c44
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,20 @@ jobs:
cache: 'npm'
# needed for integration & memory tests codecs support
- run: sudo add-apt-repository multiverse && sudo apt update && sudo apt install -y ubuntu-restricted-extras
- run: sudo apt-get -y install binaryen

# Install binaryen version_116 locally: TODO install script
- run: sudo apt-get -y install curl
- run: curl -L https://github.com/WebAssembly/binaryen/releases/download/version_116/binaryen-version_116-x86_64-linux.tar.gz > binaryen.tar.gz
- run: tar xzf binaryen.tar.gz
# TODO I was not able, after more than an hour, to update the PATH env through
# either of the hundred ways the internets tell me to for GitHub actions.
# I just want to add:
# $(pwd)/binaryen-version_116/bin
# to PATH.
# Someone more well-versed on GitHub actions black magic may help me, or
# probably we will just merge before the auto-install script dev and be done
# with it.

- run: npm install
- run: npm run build
# Firefox seems to have issue with integration tests on GitHub actions only
Expand Down

0 comments on commit a325c44

Please sign in to comment.