summaryrefslogtreecommitdiff
path: root/scripts/node/run.sh
blob: 8566fc3b3ad98fd86ac88b5ad722f0e967eaaf38 (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
#!/usr/bin/env bash

set -e
set -o pipefail

source ./scripts/${TRAVIS_OS_NAME}/setup.sh

BUILDTYPE=${BUILDTYPE:-Release}

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

source ~/.nvm/nvm.sh
nvm use $NODE_VERSION

mapbox_time "checkout_styles" \
git submodule update --init styles

mapbox_time "compile_program" \
npm install --build-from-source

################################################################################
# Test
################################################################################

# Travis OS X has no GPU
if [[ ${TRAVIS_OS_NAME} == "linux" ]]; then
    mapbox_time "checkout_test_suite" \
    git submodule update --init test/suite

    mapbox_time "run_tests" \
    npm test

    mapbox_time "run_render_tests" \
    npm run test-suite

    if [ ! -z "${AWS_ACCESS_KEY_ID}" ] && [ ! -z "${AWS_SECRET_ACCESS_KEY}" ] ; then
      # Install and add awscli to PATH for uploading the results
        mapbox_time "install_awscli" \
        pip install --user awscli
        export PATH="`python -m site --user-base`/bin:${PATH}"

        pushd test/suite
        mapbox_time "deploy_results" \
        ./bin/deploy_results.sh
        popd
    fi
fi