Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Emsdk 3.1.47 #34

Merged
merged 5 commits into from
Oct 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 12 additions & 5 deletions .github/workflows/build-and-deploy-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,20 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: numworks/setup-emscripten@bbc4f5e15974bc13e69fdadecfd1858ecb1c4dbb # there is no v1 tag/branch
with:
sdk: 3.1.42
- name: Get emscripten version
id: em-version
shell: bash
run: |
{
echo 'DETAILS<<EOF'
emcc -v 2>&1
echo EOF
} >>$GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: /opt/hostedtoolcache/emscripten/3.1.42/x64/upstream/emscripten/cache/sysroot/lib/wasm32-emscripten/lto
key: libs-${{ hashFiles('~/work/Trilangle/Trilangle/emsdk/upstream/emscripten/system/lib/**.c') }}
restore-keys: "libs-\n"
path: /opt/hostedtoolcache/emscripten/latest/x64/upstream/emscripten/cache/sysroot/lib/wasm32-emscripten/lto
key: libsv-${{ steps.em-version.outputs.DETAILS }}
# restore-keys intentionally omitted
- name: Run build script
shell: bash
run: |
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/lint-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,8 @@ jobs:
runs-on: ubuntu-latest
name: Verify wasm build
steps:
# Largely copied from build-and-deploy-pages.jobs.build-wasm.steps
- uses: actions/checkout@v4
- uses: numworks/setup-emscripten@bbc4f5e15974bc13e69fdadecfd1858ecb1c4dbb
- uses: actions/cache@v3
with:
path: /opt/hostedtoolcache/emscripten/latest/x64/upstream/emscripten/cache/sysroot/lib/wasm32-emscripten/lto
key: libs-${{ hashFiles('~/work/Trilangle/Trilangle/emsdk/upstream/emscripten/system/lib/**.c') }}
restore-keys: "libs-\n"
- name: Run build script
shell: bash
run: |
Expand Down
Loading