diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-02-03 23:50:48 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-02-03 23:50:48 +0100 |
commit | 5069922e24159755a7df40b1c264507806a32d7a (patch) | |
tree | c555e91fb64776bad357ed472ca25ffe9fef02b5 | |
parent | 6f727bc0f99a8d36a11e8c5b61489c2e6e96a0ea (diff) | |
download | forums-5069922e24159755a7df40b1c264507806a32d7a.tar forums-5069922e24159755a7df40b1c264507806a32d7a.tar.gz forums-5069922e24159755a7df40b1c264507806a32d7a.tar.bz2 forums-5069922e24159755a7df40b1c264507806a32d7a.tar.xz forums-5069922e24159755a7df40b1c264507806a32d7a.zip |
[ticket/11509] Run commit message checker only in one environment.
PHPBB3-11509
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index 20a3c4f9fe..16f9e5a799 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,4 +24,4 @@ before_script: script: - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.2' ]; then phpunit --configuration travis/phpunit-$DB-travis.xml; else phpBB/vendor/bin/phpunit --configuration travis/phpunit-$DB-travis.xml; fi" - - sh -c "if [ '$TRAVIS_PULL_REQUEST' != 'false' ]; then git-tools/commit-msg-hook-range.sh $TRAVIS_BRANCH...FETCH_HEAD; fi" + - sh -c "if [ '$TRAVIS_PHP_VERSION' = '5.5' -a '$DB' = 'mysql' -a '$TRAVIS_PULL_REQUEST' != 'false' ]; then git-tools/commit-msg-hook-range.sh $TRAVIS_BRANCH...FETCH_HEAD; fi" |