Skip to content

Commit

Permalink
Fix: PreRelease WASM build stage
Browse files Browse the repository at this point in the history
  • Loading branch information
DarvinHarutyunyan committed Jun 26, 2023
1 parent 3272974 commit 1bc0486
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,13 +128,13 @@ jobs:
- uses: actions/checkout@v3
- run: git submodule update --init --recursive
- name: Prepare WASM Environment
run: git clone https://github.com/emscripten-core/emsdk.git
- name: Install WASM SDK
run: ./emsdk/emsdk install latest
- name: Activate WASM SDK Environment
run: ./emsdk/emsdk activate latest && source ./emsdk/emsdk_env.sh
run: |
git clone https://github.com/emscripten-core/emsdk.git
./emsdk/emsdk install latest
- name: Build USearch WASM by Emscripten
run: emcmake cmake . -B build-wasm && make -C ./build-wasm
run: |
./emsdk/emsdk activate latest && source ./emsdk/emsdk_env.sh
emcmake cmake . -B build-wasm && make -C ./build-wasm
build_docker:
name: Test Docker Image
Expand Down

0 comments on commit 1bc0486

Please sign in to comment.