From 34972176fe4837a79298f953be85f39af4027601 Mon Sep 17 00:00:00 2001 From: xawotihs Date: Thu, 4 Dec 2014 07:50:13 +0100 Subject: [PATCH] Limiting the builds to 2 simultaneous processes --- travis-script.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/travis-script.sh b/travis-script.sh index 8d55b8be0..cb1d60451 100755 --- a/travis-script.sh +++ b/travis-script.sh @@ -38,11 +38,11 @@ if [ "$BUILD_TYPE" = "PSP" ]; then echo PSPDEV = $PSPDEV echo psp-config = `psp-config --psp-prefix` cd JGE - make -j 8 + make -j 2 cd .. cd projects/mtg mkdir objs - make -j 8 + make -j 2 mkdir WTH mkdir WTH/Res mv EBOOT.PBP WTH/ @@ -60,7 +60,7 @@ fi # we're building an Android binary here if [ "$BUILD_TYPE" = "Android" ]; then - android-ndk-r9/ndk-build -C projects/mtg/Android -j8 + android-ndk-r9/ndk-build -C projects/mtg/Android -j2 $ANDROID list targets $ANDROID update project -t 1 -p projects/mtg/Android ant debug -f projects/mtg/Android/build.xml @@ -71,11 +71,11 @@ if [ "$BUILD_TYPE" = "Qt" ]; then mkdir qt-gui-build cd qt-gui-build $QMAKE ../projects/mtg/wagic-qt.pro CONFIG+=release CONFIG+=graphics - make -j 8 + make -j 2 cd .. # let's try an Intel linux binary in debug text-mode-only $QMAKE projects/mtg/wagic-qt.pro CONFIG+=console CONFIG+=debug DEFINES+=CAPTURE_STDERR - make -j 8 + make -j 2 # we're cross-compiling a Qt Windows version here, # PATH is only set here to prevent colision @@ -86,7 +86,7 @@ if [ "$BUILD_TYPE" = "Qt" ]; then # mkdir win-cross # cd win-cross # /opt/mingw32/bin/qmake ../../projects/mtg/wagic-qt.pro CONFIG+=release CONFIG+=graphics - # make -j 8 + # make -j 2 # cd release # cp ../../../projects/mtg/bin/fmod.dll . # cp /opt/mingw32/bin/QtCore4.dll .