diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2016-08-01 18:27:04 +0300 |
---|---|---|
committer | Mike Morris <mikemorris@users.noreply.github.com> | 2016-08-01 14:48:39 -0400 |
commit | ad5a7f8b5496dc39a063b058ee94a41a816fc32c (patch) | |
tree | b1bc8fea0fe2172967c502f7c6d5accc5978bb81 /.travis.yml | |
parent | 472ab7442f566e6d2e8f1b67282d8394d0394de6 (diff) | |
download | qtlocation-mapboxgl-ad5a7f8b5496dc39a063b058ee94a41a816fc32c.tar.gz |
[node] build and publish Node.js binaries with BUILDTYPE=Release
Skip tests when publishing binaries and skip publishing render test results when those tests don't run.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 4c7ae8fa51..211a6f9f81 100644 --- a/.travis.yml +++ b/.travis.yml @@ -56,13 +56,17 @@ matrix: dist: trusty language: node compiler: "node4-clang35-debug" - env: BUILDTYPE=Debug _CXX=clang++-3.5 _CC=clang-3.5 + env: _CXX=clang++-3.5 _CC=clang-3.5 addons: *clang35 + before_script: + - export PACKAGE_JSON_VERSION=$(node -e "console.log(require('./package.json').version)") + - export PUBLISH=$([[ ${TAG} == "node-v${PACKAGE_JSON_VERSION}" ]] && echo 1 || echo 0) + - export BUILDTYPE=$([[ ${PUBLISH} ]] && echo "Release" || echo "Debug") script: - nvm install 4 - nvm use 4 - make node - - make test-node + - if [[ ! ${PUBLISH} ]]; then make test-node; fi after_script: - ccache --show-stats - ./platform/node/scripts/after_script.sh ${TRAVIS_JOB_NUMBER} ${TRAVIS_TAG:-} |