Skip to content

Commit ff3f84b

Browse files
committedAug 11, 2017
[travis] Run make in ctest if on pull request
1 parent 24adf77 commit ff3f84b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎.ci/travis/linux/script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export CTEST_BUILD_COMMAND="/usr/bin/make -j3 -i -k"
3333
# when make is run inside ctest no output is generated. At the current time
3434
# nobody know why, but at least this workaround gets travis results for master
3535
# back. Better approaches VERY welcome.
36-
if [[ ${TRAVIS_BRANCH} == "master" ]];
36+
if [[ ${TRAVIS_PULL_REQUEST} == "false" ]];
3737
then
3838
pushd build
3939
$CTEST_BUILD_COMMAND

0 commit comments

Comments
 (0)
Please sign in to comment.