Skip to content

Commit

Permalink
fix: emscripten version pinned to 3.1.71 with node 20.18
Browse files Browse the repository at this point in the history
  • Loading branch information
jaromil committed Nov 11, 2024
1 parent 6ec1d8c commit 5a33ac0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,9 +228,9 @@ jobs:
if: "!contains(github.event.pull_request.labels.*.name, 'SKIP_JS') && github.event_name == 'pull_request'"
strategy:
matrix:
node-version: [20.x]
node-version: [20.18.0]
env:
EM_VERSION: latest
EM_VERSION: 3.1.71
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -334,20 +334,20 @@ jobs:
if: ${{ needs.semantic-release.outputs.release == 'True' }}
runs-on: ubuntu-latest
env:
EM_VERSION: 3.1.59
EM_VERSION: 3.1.71
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 20.18.0
- uses: mymindstorm/setup-emsdk@v14
with:
version: ${{ env.EM_VERSION }}
- name: Build Zenroom Wasm
run: |
make node-wasm RELEASE=1
make node-wasm RELEASE=1 CCACHE=1
env:
EMSCRIPTEN: ${{ env.EMSDK }}/upstream/emscripten
- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion build/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ foreach test_suite : tests
test('lua_'+test_suite.underscorify(),
bats_bin,
args: [test_dir+'lua/'+test_suite+'.bats'],
timeout: 120
timeout: 240
)
endforeach
endif
Expand Down

0 comments on commit 5a33ac0

Please sign in to comment.