From 6c7fdbc0c6dc61e2132e0ae892a2d50117b69122 Mon Sep 17 00:00:00 2001 From: James Turner Date: Mon, 26 Nov 2018 13:54:12 +0000 Subject: [PATCH] Remove -j option to Cmake --build --- hudson_mac_build_release.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/hudson_mac_build_release.sh b/hudson_mac_build_release.sh index f5a543a..d43125a 100755 --- a/hudson_mac_build_release.sh +++ b/hudson_mac_build_release.sh @@ -23,8 +23,8 @@ echo "Starting on SimGear" pushd sgBuild cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo ../simgear -# compile -cmake --build . -j +# compile (with out-j for now, it's hitting process limits) +cmake --build . if [ $? -ne '0' ]; then echo "make simgear failed" @@ -47,7 +47,8 @@ fi cmake -DFG_BUILD_TYPE=$FGBUILDTYPE -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DCMAKE_BUILD_TYPE=RelWithDebInfo ../flightgear -cmake --build . -j +# compile (with out-j for now, it's hitting process limits) +cmake --build . if [ $? -ne '0' ]; then echo "make flightgear failed"