Skip to content

Commit eeeacdd

Browse files
authored
Update emscripten.yml
1 parent 7cc862c commit eeeacdd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/emscripten.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -694,7 +694,12 @@ jobs:
694694
-DSYSROOT_PATH=$SYSROOT_PATH \
695695
../
696696
fi
697-
EMCC_CORES=2 emmake make -j 2 check-cppinterop
697+
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
698703
cd ./unittests/CppInterOp/
699704
# Explaination of options for emrun
700705
# --browser (name of browser on path)

0 commit comments

Comments
 (0)