diff options
-rwxr-xr-x | nightly/buildlinux.sh | 2 | ||||
-rwxr-xr-x | nightly/buildwindows.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/nightly/buildlinux.sh b/nightly/buildlinux.sh index b57b5ee71..ffc50c35b 100755 --- a/nightly/buildlinux.sh +++ b/nightly/buildlinux.sh @@ -13,7 +13,7 @@ if [ "$result" != 0 ]; then exit $result fi -make -j8 +make -j16 result=$? if [ "$result" != 0 ]; then exit $result diff --git a/nightly/buildwindows.sh b/nightly/buildwindows.sh index c3746f2cf..ff353eab4 100755 --- a/nightly/buildwindows.sh +++ b/nightly/buildwindows.sh @@ -11,7 +11,7 @@ if [ "$result" != 0 ]; then exit $result fi -make -j5 2>build/make.log +make -j16 2>build/make.log result=$? if [ "$result" != 0 ]; then exit $result |