Skip to content

Commit

Permalink
Fix GHA emsdk path
Browse files Browse the repository at this point in the history
  • Loading branch information
smiasojed committed Nov 8, 2024
1 parent 007b79e commit 1837643
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-revive-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,15 +52,20 @@ jobs:
- name: Build LLVM
if: steps.cache-llvm.outputs.cache-hit != 'true'
run: |
export LLVM_LINK_PREFIX==${PWD}/llvm18.0-emscripten
source ./emsdk/emsdk_env.sh
export EMSDK_ROOT=${PWD}/emsdk
./emscripten-build-llvm.sh
- name: Use Cached LLVM
if: steps.cache-llvm.outputs.cache-hit == 'true'
run: |
echo "Using cached LLVM"
- name: Build revive
run: |
export LLVM_LINK_PREFIX=${PWD}/llvm18.0-emscripten
source ./emsdk/emsdk_env.sh
make install-wasm
- uses: actions/upload-artifact@v4
with:
name: revive-wasm
Expand Down

0 comments on commit 1837643

Please sign in to comment.