From 8bc8713e70e52ee8a8653b50ad8cf4be40beb9a1 Mon Sep 17 00:00:00 2001 From: Mike Morris Date: Tue, 20 Sep 2016 14:45:59 -0400 Subject: [node] fix bad conditional, actually run tests --- .travis.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index e0b733e4aa..793f0130d6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,7 +49,7 @@ script: - make run-test after_script: - ccache --show-stats - - ./platform/linux/scripts/after_script.sh ${TRAVIS_JOB_NUMBER} ${TRAVIS_TAG:-} + - ./platform/linux/scripts/after_script.sh ${TRAVIS_JOB_NUMBER} matrix: include: @@ -63,16 +63,16 @@ matrix: 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") + - export PUBLISH=$([[ "${TRAVIS_TAG:-}" == "node-v${PACKAGE_JSON_VERSION}" ]] && echo true) + - export BUILDTYPE=$([[ -n ${PUBLISH:-} ]] && echo "Release" || echo "Debug") script: - nvm install 4 - nvm use 4 - make node - - if [[ ! ${PUBLISH} ]]; then make test-node; fi + - if [[ -z ${PUBLISH} ]]; then make test-node; fi after_script: - ccache --show-stats - - ./platform/node/scripts/after_script.sh ${TRAVIS_JOB_NUMBER} ${TRAVIS_TAG:-} + - ./platform/node/scripts/after_script.sh ${TRAVIS_JOB_NUMBER} # GCC 5 - Debug - Coverage - os: linux -- cgit v1.2.1