Disable SDE for PRs

Pull requests cannot use Travis secret variables, so SDE needs to be disabled. This PR should suffice as a test.
This commit is contained in:
Devin Matthews
2018-07-06 09:19:44 -05:00
committed by GitHub
parent 89e178ce38
commit 3cb396d1ae

View File

@@ -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