summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.travis.yml6
-rwxr-xr-xscripts/android/install.sh2
-rwxr-xr-xscripts/android/run.sh2
-rwxr-xr-xscripts/ios/install.sh2
-rwxr-xr-xscripts/ios/package.sh2
-rwxr-xr-xscripts/ios/run.sh2
-rwxr-xr-xscripts/linux/install.sh2
-rwxr-xr-xscripts/linux/run.sh28
-rwxr-xr-xscripts/linux/setup.sh27
-rwxr-xr-xscripts/osx/install.sh2
-rwxr-xr-xscripts/osx/run.sh8
-rwxr-xr-xscripts/osx/setup.sh7
12 files changed, 40 insertions, 50 deletions
diff --git a/.travis.yml b/.travis.yml
index 0572b166b1..54f3cb5cc7 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -82,9 +82,15 @@ env:
- secure: "nQqSM8rd7OHtV4MqmNqVnkrVHqxKqQsaWRYk4/nPdhbeVWtTtkk0df711LrF1TUtbEPEewHxYUvTZ/UXmwJNeoKdzTHavI8hnatRkgjyxGERPn1il1Otelht9I+LQQHf+plrpRjVWBrNIW0Zox1B3cqn6d3NglpbXrEQ2EjYGNA="
- KIF_SCREENSHOTS="${TRAVIS_BUILD_DIR}/screenshots"
+before_install:
+- source ./scripts/travis_helper.sh
+
install:
- ./scripts/${FLAVOR}/install.sh
+before_script:
+- if [ -f ./scripts/${FLAVOR}/setup.sh ]; then source ./scripts/${FLAVOR}/setup.sh; fi
+
script:
- ./scripts/${FLAVOR}/run.sh
diff --git a/scripts/android/install.sh b/scripts/android/install.sh
index 656465cf2f..fe2b816064 100755
--- a/scripts/android/install.sh
+++ b/scripts/android/install.sh
@@ -3,8 +3,6 @@
set -e
set -o pipefail
-source ./scripts/travis_helper.sh
-
mapbox_time "checkout_mason" \
git submodule update --init .mason
diff --git a/scripts/android/run.sh b/scripts/android/run.sh
index 7a909ffe3c..38749f79f5 100755
--- a/scripts/android/run.sh
+++ b/scripts/android/run.sh
@@ -9,8 +9,6 @@ export HOST=android
export MASON_PLATFORM=android
export MASON_ANDROID_ABI=${ANDROID_ABI:-arm-v7}
-source ./scripts/travis_helper.sh
-
# Add Mason to PATH
export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason"
diff --git a/scripts/ios/install.sh b/scripts/ios/install.sh
index 274557c5d7..50f43c26b0 100755
--- a/scripts/ios/install.sh
+++ b/scripts/ios/install.sh
@@ -3,8 +3,6 @@
set -e
set -o pipefail
-source ./scripts/travis_helper.sh
-
mapbox_time "checkout_mason" \
git submodule update --init .mason
export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason"
diff --git a/scripts/ios/package.sh b/scripts/ios/package.sh
index 3d23c0623b..35162ce5d1 100755
--- a/scripts/ios/package.sh
+++ b/scripts/ios/package.sh
@@ -4,8 +4,6 @@ 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`
diff --git a/scripts/ios/run.sh b/scripts/ios/run.sh
index 20695c40c1..e25f9a3025 100755
--- a/scripts/ios/run.sh
+++ b/scripts/ios/run.sh
@@ -6,8 +6,6 @@ set -u
BUILDTYPE=${BUILDTYPE:-Release}
-source ./scripts/travis_helper.sh
-
# Add Mason to PATH
export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason"
diff --git a/scripts/linux/install.sh b/scripts/linux/install.sh
index a6ffacf5fe..1504da2a1f 100755
--- a/scripts/linux/install.sh
+++ b/scripts/linux/install.sh
@@ -3,8 +3,6 @@
set -e
set -o pipefail
-source ./scripts/travis_helper.sh
-
mapbox_time "checkout_mason" \
git submodule update --init .mason
export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason"
diff --git a/scripts/linux/run.sh b/scripts/linux/run.sh
index 0412459a18..6a703fc7fb 100755
--- a/scripts/linux/run.sh
+++ b/scripts/linux/run.sh
@@ -5,34 +5,6 @@ set -o pipefail
BUILDTYPE=${BUILDTYPE:-Release}
-source ./scripts/travis_helper.sh
-
-# Add Mason to PATH
-export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason"
-
-# Set the core file limit to unlimited so a core file is generated upon crash
-ulimit -c unlimited -S
-
-################################################################################
-# X Server setup
-################################################################################
-
-# Start the mock X server
-if [ -f /etc/init.d/xvfb ] ; then
- mapbox_time "start_xvfb" \
- sh -e /etc/init.d/xvfb start
- sleep 2 # sometimes, xvfb takes some time to start up
-fi
-
-# Make sure we're connecting to xvfb
-export DISPLAY=:99.0
-
-# Make sure we're loading the 10.4.3 libs we installed manually
-export LD_LIBRARY_PATH="`mason prefix mesa 10.4.3`/lib:${LD_LIBRARY_PATH:-}"
-
-mapbox_time "glxinfo" \
-glxinfo
-
################################################################################
# Build
################################################################################
diff --git a/scripts/linux/setup.sh b/scripts/linux/setup.sh
new file mode 100755
index 0000000000..15b664862e
--- /dev/null
+++ b/scripts/linux/setup.sh
@@ -0,0 +1,27 @@
+#!/usr/bin/env bash
+
+set -e
+set -o pipefail
+
+# Set the core file limit to unlimited so a core file is generated upon crash
+ulimit -c unlimited -S
+
+################################################################################
+# X Server setup
+################################################################################
+
+# Start the mock X server
+if [ -f /etc/init.d/xvfb ] ; then
+ mapbox_time "start_xvfb" \
+ sh -e /etc/init.d/xvfb start
+ sleep 2 # sometimes, xvfb takes some time to start up
+fi
+
+# Make sure we're connecting to xvfb
+export DISPLAY=:99.0
+
+# Make sure we're loading the 10.4.3 libs we installed manually
+export LD_LIBRARY_PATH="`mason prefix mesa 10.4.3`/lib:${LD_LIBRARY_PATH:-}"
+
+mapbox_time "glxinfo" \
+glxinfo
diff --git a/scripts/osx/install.sh b/scripts/osx/install.sh
index 1994d371d0..a430b5495d 100755
--- a/scripts/osx/install.sh
+++ b/scripts/osx/install.sh
@@ -3,8 +3,6 @@
set -e
set -o pipefail
-source ./scripts/travis_helper.sh
-
mapbox_time "checkout_mason" \
git submodule update --init .mason
export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason"
diff --git a/scripts/osx/run.sh b/scripts/osx/run.sh
index f386318c8b..4f086424ba 100755
--- a/scripts/osx/run.sh
+++ b/scripts/osx/run.sh
@@ -5,14 +5,6 @@ set -o pipefail
BUILDTYPE=${BUILDTYPE:-Release}
-source ./scripts/travis_helper.sh
-
-# Add Mason to PATH
-export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason"
-
-# Set the core file limit to unlimited so a core file is generated upon crash
-ulimit -c unlimited -S
-
################################################################################
# Build
################################################################################
diff --git a/scripts/osx/setup.sh b/scripts/osx/setup.sh
new file mode 100755
index 0000000000..881a5b40a0
--- /dev/null
+++ b/scripts/osx/setup.sh
@@ -0,0 +1,7 @@
+#!/usr/bin/env bash
+
+set -e
+set -o pipefail
+
+# Set the core file limit to unlimited so a core file is generated upon crash
+ulimit -c unlimited -S