summaryrefslogtreecommitdiff
path: root/scripts/ios/run.sh
blob: abb4c2cb0c2c93de8fe3d741af05858661f4b593 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/usr/bin/env bash

set -e
set -o pipefail
set -u

BUILDTYPE=${BUILDTYPE:-Release}

source ./scripts/travis_helper.sh

# Add Mason to PATH
export PATH="`pwd`/.mason:${PATH}" MASON_DIR="`pwd`/.mason"

PUBLISH_TAG=($(git show -s --format=%B | sed -n 's/.*\[publish \([a-z]\{1,\}\)-v\([0-9.]\{1,\}\)\].*/\1 \2/p'))
PUBLISH_PLATFORM=${PUBLISH_TAG[0],-}
PUBLISH_VERSION=${PUBLISH_TAG[1],-}


################################################################################
# Build
################################################################################

if [[ ${PUBLISH_PLATFORM} = 'ios' ]]; then
    # build & package iOS
    mapbox_time "package_ios" \
    make ipackage

    # publish iOS build
    mapbox_time "deploy_ios" \
    ./scripts/publish_ios.sh "${PUBLISH_VERSION}"
else
    # build & test iOS
    mapbox_time "run_ios_tests" \
    make itest
fi