We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 742dea0 commit 1529274Copy full SHA for 1529274
.github/workflows/emscripten.yml
@@ -670,8 +670,11 @@ jobs:
670
-DSYSROOT_PATH=$SYSROOT_PATH \
671
../
672
fi
673
-
674
- emmake make -j ${{ env.ncpus }} check-cppinterop
+ if [[ "${{ matrix.os }}" == "macos"* && "${{ matrix.clang-runtime }}" == "19"]]; then
+ EMCC_CORES=2 emmake make 2
675
+ else
676
+ emmake make -j ${{ env.ncpus }} check-cppinterop
677
+ fi
678
cd ./unittests/CppInterOp/
679
# Fresh install browsers, and run Emscripten tests in them
680
# This is to match the Emscripten build instructions, where
0 commit comments