summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-04-28 11:11:33 +0200
committerKonstantin Käfer <mail@kkaefer.com>2015-04-28 11:11:33 +0200
commitfe85bcd73707fb832645f9fde18c288edd6f6dcd (patch)
tree3677267bc2878f0d36b15ceca7a6d2509252ae17 /scripts
parentb0bf80e79c4516153da76be0e733ef76c8329f56 (diff)
downloadqtlocation-mapboxgl-fe85bcd73707fb832645f9fde18c288edd6f6dcd.tar.gz
bump up the number of concurrent jobs on iOS builds
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/ios/package.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/ios/package.sh b/scripts/ios/package.sh
index 07e568faa1..e71925f803 100755
--- a/scripts/ios/package.sh
+++ b/scripts/ios/package.sh
@@ -4,6 +4,8 @@ set -e
set -o pipefail
set -u
+source ./scripts/travis_helper.sh
+
NAME=MapboxGL
OUTPUT=build/ios/pkg
IOS_SDK_VERSION=`xcrun --sdk iphoneos --show-sdk-version`
@@ -40,7 +42,7 @@ xcodebuild -sdk iphoneos${IOS_SDK_VERSION} \
-project ./build/ios/mbgl.xcodeproj \
-configuration ${BUILDTYPE} \
-target everything \
- -jobs `sysctl -n hw.ncpu` | xcpretty -c
+ -jobs ${JOBS} | xcpretty -c
step "Building iOS Simulator targets..."
@@ -50,7 +52,7 @@ xcodebuild -sdk iphonesimulator${IOS_SDK_VERSION} \
-project ./build/ios/mbgl.xcodeproj \
-configuration ${BUILDTYPE} \
-target everything \
- -jobs `sysctl -n hw.ncpu` | xcpretty -c
+ -jobs ${JOBS} | xcpretty -c
step "Building static library..."