Skip to content

Commit

Permalink
Update test_language_bindings.yml
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Hunter <[email protected]>
  • Loading branch information
ianfhunter authored Nov 25, 2023
1 parent c56c98e commit 047d85e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test_language_bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,19 @@ jobs:
version: "10.0"
- name: python deps
run: python3 -m pip install -r reqs/requirements.txt
- name: javascript prerequisites
- name: apt prerequisites
run: |
sudo apt install clang-14 lld-14 llvm-14 libjs-d3 python3-numpy
sudo apt install llvm -y
- name: javascript prerequisites
run: |
# NodeJS
curl -sL https://deb.nodesource.com/setup_20.x | sudo -E bash -
sudo apt-get install -y nodejs
# Acorn-Node
git clone https://github.com/acornjs/acorn.git
cd acorn ; npm install ; cd -
# Emscripten
wget --no-verbose -c http://archive.ubuntu.com/ubuntu/pool/universe/e/emscripten/emscripten_3.1.6~dfsg-5_all.deb
sudo apt install ./emscripten_3.1.6~dfsg-5_all.deb nodejs- # ignore nodejs acorn max version
- name: make js
Expand Down

0 comments on commit 047d85e

Please sign in to comment.