From 92174bce7d6522d56681efec086caedf30f99a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Ckpepper=E2=80=9D?= <kp11@sanger.ac.uk> Date: Mon, 29 Jan 2018 13:51:51 +0000 Subject: [PATCH] travis yml change --- .travis.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index be6db4cf9..6a8e6835c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,14 +6,13 @@ sudo: false env: global: - BUILD_CMD='make' + - RUN_TESTS=false matrix: include: - jdk: oraclejdk8 - env: BUILD_CMD='ant -f build.xml' - script: - - "cd test" - - "ln -s $(pwd)/../etc/log4j.properties ." - - "./RunDefaultUnitTests.sh | tee test.log && [ -z "$(grep 'Failures:\s[^0]\|Errors:\s[^0]' test.log)" ]" + env: + - BUILD_CMD='ant -f build.xml' + - RUN_TESTS=true cache: directories: - "${HOME}/dependencies" @@ -24,4 +23,8 @@ before_install: - "source install_dependencies.sh" install: - "$BUILD_CMD" -script: skip +script: + - test $RUN_TESTS = true \ + && cd test \ + && ln -s $(pwd)/../etc/log4j.properties . \ + && ./RunDefaultUnitTests.sh | tee test.log && [ -z "$(grep 'Failures:\s[^0]\|Errors:\s[^0]' test.log)" ] -- GitLab