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 7cc862c commit eeeacddCopy full SHA for eeeacdd
.github/workflows/emscripten.yml
@@ -694,7 +694,12 @@ jobs:
694
-DSYSROOT_PATH=$SYSROOT_PATH \
695
../
696
fi
697
- EMCC_CORES=2 emmake make -j 2 check-cppinterop
+ os="${{ matrix.os }}"
698
+ if [[ "${os}" != macos* ]] ; then
699
+ EMCC_CORES=1 emmake make -j 1 check-cppinterop
700
+ else
701
+ EMCC_CORES=2 emmake make -j 2 check-cppinterop
702
+ fi
703
cd ./unittests/CppInterOp/
704
# Explaination of options for emrun
705
# --browser (name of browser on path)
0 commit comments