Skip to content

Commit cc2eb6a

Browse files
authored
Remove restriction on number of processes for Emscripten static library build on MacOS Github runners (#713)
1 parent 5bad198 commit cc2eb6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/emscripten.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -708,7 +708,7 @@ jobs:
708708
if [[ "${os}" != macos* ]] ; then
709709
EMCC_CORES=1 emmake make -j 1 check-cppinterop
710710
else
711-
EMCC_CORES=2 emmake make -j 2 check-cppinterop
711+
emmake make -j ${{ env.ncpus }} check-cppinterop
712712
fi
713713
cd ./unittests/CppInterOp/
714714
# Explaination of options for emrun

0 commit comments

Comments
 (0)