summaryrefslogtreecommitdiff
path: root/platform/macos/scripts/deploy-packages.sh
blob: c13740174823673ebee63c98c391beba54db8eec (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#!/usr/bin/env bash

set -e
set -o pipefail
set -u

usage() {
cat <<EOF
# Usage: sh $0 version target_directory [argument]

# version: The semver version plus optional alpha beta distinction (i.e. {major.minor.patch}{-alpha.N})
# target_directory: The directory where build output should be placed

# argument:
#     -g: Upload to github

# environment variables and dependencies: 
#     - You must run "mbx auth ..." before running
#     - Set GITHUB_TOKEN to a GitHub API access token in your environment to use GITHUB_RELEASE
#     - "wget" is required for downloading the zip files from s3
#     - The "github-release" gem is required to use GITHUB_RELEASE
EOF
}

buildPackageStyle() {
    local package=$1 style=""     
    if [[ ${#} -eq 2 ]]; then
        style="$2"
    fi            
    echo "make ${package} ${style}"
    make ${package}
    echo "publish ${package} with ${style}"
    local file_name=""
    if [ -z ${style} ] 
    then
        file_name=mapbox-macos-sdk-${PUBLISH_VERSION}.zip        
    else
        file_name=mapbox-macos-sdk-${PUBLISH_VERSION}-${style}.zip        
    fi
    echo "compress ${file_name}"
    cd build/macos/pkg
    rm -f ../${file_name}
    zip -r ../${file_name} *
    cd -
    if [[ "${GITHUB_RELEASE}" == true ]]; then
        echo "publish ${file_name} to GitHub"
        github-release --verbose upload --tag "macos-v${PUBLISH_VERSION}" --name ${file_name} --file "build/macos/${file_name}"
    fi        
}

if [ ${#} -eq 0 -o ${#} -gt 3 ]; then
    usage
    exit 1
fi

export TRAVIS_REPO_SLUG=mapbox-gl-native
export PUBLISH_VERSION=$1
export GITHUB_USER=mapbox
export GITHUB_REPO=mapbox-gl-native
export BUILDTYPE=Release

BINARY_DIRECTORY=$2
PUBLISH_PRE_FLAG=''
GITHUB_RELEASE=false

echo "Deploying version ${PUBLISH_VERSION}..."

if [[ ${#} -eq 3 &&  $3 == "-g" ]]; then
    GITHUB_RELEASE=true
fi
 
make clean && make distclean

if [[ "${GITHUB_RELEASE}" == true ]]; then
    echo "Create GitHub release..."
    if [[ $( echo ${PUBLISH_VERSION} | awk '/[0-9]-/' ) ]]; then
        PUBLISH_PRE_FLAG='--pre-release'
    fi
    github-release --verbose release --tag "macos-v${PUBLISH_VERSION}" --name "macos-v${PUBLISH_VERSION}" --draft ${PUBLISH_PRE_FLAG}
fi

buildPackageStyle "xpackage" "symbols"
buildPackageStyle "xpackage SYMBOLS=NO"