Skip to content

Commit

Permalink
fix for wrong compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
kalwalt committed Oct 23, 2023
1 parent 656823e commit 377f967
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
node-version: '16.x'
- name: Build and test WebARKitLib
run: |
cd tests && mkdir build && cd build && cmake .. && make && ./webarkit_test
cd tests && mkdir build && cd build && cmake -DEMSCRIPTEN_COMP=0 .. && make && ./webarkit_test
- name: Build WebARKitLib with Emscripten (Docker)
run: docker run -dit --name emscripten-webarkit-testing -v $(pwd):/src emscripten/emsdk:3.1.26 bash
run: docker exec emscripten-webarkit-testing emcmake cmake -B emscripten/WebARKitLib/WebARKit/build -Semscripten/WebARKitLib/WebARKit -DEMSCRIPTEN_COMP=1 ..
run: docker exec emscripten-webarkit-testing emmake make -C emscripten/WebARKitLib/WebARKit/build
- run: docker exec emscripten-webarkit-testing emcmake cmake -B emscripten/WebARKitLib/WebARKit/build -Semscripten/WebARKitLib/WebARKit -DEMSCRIPTEN_COMP=1 ..
- run: docker exec emscripten-webarkit-testing emmake make -C emscripten/WebARKitLib/WebARKit/build

0 comments on commit 377f967

Please sign in to comment.