We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86e9b94 commit e29f74eCopy full SHA for e29f74e
.travis.yml
@@ -26,6 +26,8 @@ env:
26
- SYMFONY_DEPRECATIONS_HELPER=weak
27
28
before_install:
29
+ - if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then git fetch origin "refs/pull/$TRAVIS_PULL_REQUEST/merge"; else git fetch origin "$TRAVIS_BRANCH"; fi;
30
+ - if [[ "$TRAVIS_COMMIT" != `git rev-parse FETCH_HEAD` ]]; then echo "Pull request or branch commit hash has changed, aborting!"; exit 1; fi;
31
- travis_retry sudo apt-get install parallel
32
- composer self-update
33
- if [[ "$TRAVIS_PHP_VERSION" != *"nightly" ]]; then phpenv config-rm xdebug.ini; fi;
0 commit comments