Skip to content

Commit 1529274

Browse files
authored
Try to build emscripten static library on macos runner (llvm 19)
1 parent 742dea0 commit 1529274

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/emscripten.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -670,8 +670,11 @@ jobs:
670670
-DSYSROOT_PATH=$SYSROOT_PATH \
671671
../
672672
fi
673-
674-
emmake make -j ${{ env.ncpus }} check-cppinterop
673+
if [[ "${{ matrix.os }}" == "macos"* && "${{ matrix.clang-runtime }}" == "19"]]; then
674+
EMCC_CORES=2 emmake make 2
675+
else
676+
emmake make -j ${{ env.ncpus }} check-cppinterop
677+
fi
675678
cd ./unittests/CppInterOp/
676679
# Fresh install browsers, and run Emscripten tests in them
677680
# This is to match the Emscripten build instructions, where

0 commit comments

Comments
 (0)