From 3cb396d1ae4ee569f862db201c6a976712fd128e Mon Sep 17 00:00:00 2001 From: Devin Matthews Date: Fri, 6 Jul 2018 09:19:44 -0500 Subject: [PATCH] Disable SDE for PRs Pull requests cannot use Travis secret variables, so SDE needs to be disabled. This PR should suffice as a test. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index adcd16abf..c6e3313a8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -59,4 +59,4 @@ script: - $CC --version - make -j 2 - if [ $TEST -eq 1 ]; then travis_wait 30 $DIST_PATH/travis/do_testsuite.sh; fi -- if [ $SDE -eq 1 ]; then travis_wait 30 $DIST_PATH/travis/do_sde.sh; fi +- if [ $SDE -eq 1 ] && [ "$TRAVIS_PULL_REQUEST" = "false" ] ; then travis_wait 30 $DIST_PATH/travis/do_sde.sh; fi