Skip to content

Commit

Permalink
emscripten 3.1.64
Browse files Browse the repository at this point in the history
  • Loading branch information
nathhB committed Sep 12, 2024
1 parent 77e14db commit 1344133
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/nbnet.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
name: nbnet

env:
EMSDK_VERSION: 3.1.64

on:
push:
branches: [ master, github-actions, release-2.0 ]
Expand Down Expand Up @@ -92,7 +95,7 @@ jobs:
- name: Install prerequisites
run: sudo apt-get install build-essential cmake git python2 g++ -y
- name: Install emsdk
run: ./bin/github-actions/install_emsdk.sh
run: ./bin/github-actions/install_emsdk.sh $EMSDK_VERSION
- name: Install nbnet NPM dependencies
run: |
npm update
Expand Down Expand Up @@ -148,7 +151,7 @@ jobs:
- name: Install prerequisites
run: brew install cmake coreutils
- name: Install emsdk
run: ./bin/github-actions/install_emsdk.sh
run: ./bin/github-actions/install_emsdk.sh $EMSDK_VERSION
- name: Install nbnet NPM dependencies
run: |
npm update
Expand Down Expand Up @@ -189,7 +192,7 @@ jobs:
- name: Download and build libdatachannel
run: ./bin/github-actions/download_and_build_libdatachannel.sh
- name: Install emsdk
run: ./bin/github-actions/install_emsdk.sh
run: ./bin/github-actions/install_emsdk.sh $EMSDK_VERSION
- name: Install nbnet NPM dependencies
run: |
npm update
Expand Down
4 changes: 2 additions & 2 deletions bin/github-actions/install_emsdk.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

git clone https://github.com/emscripten-core/emsdk.git
cd emsdk
./emsdk install latest
./emsdk activate latest
./emsdk install $1
./emsdk activate $1
source ./emsdk_env.sh
emcc -v # make sure emcc is available

0 comments on commit 1344133

Please sign in to comment.