Last active
December 31, 2019 02:39
-
-
Save discordier/8d4b495d72a8ad93fa94 to your computer and use it in GitHub Desktop.
Reference .travis.yml when using phpcq with Contao 3.2 to 3.5.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
language: php | |
php: | |
- "5.3" | |
- "5.4" | |
- "5.5" | |
- "5.6" | |
- "7.0" | |
env: | |
- CONTAO_VERSION=~3.2.0 | |
- CONTAO_VERSION=~3.3.0 | |
- CONTAO_VERSION=~3.4.0 | |
- CONTAO_VERSION=~3.5.0 | |
# Exclude impossible Contao Version combinations. | |
matrix: | |
exclude: | |
- php: "5.3" | |
env: CONTAO_VERSION=~3.5.0 | |
sudo: false | |
install: | |
- travis_retry composer self-update && composer --version | |
- travis_retry composer require contao/core $CONTAO_VERSION --no-update | |
- travis_retry composer update --prefer-dist --no-interaction | |
script: ant -keep-going | |
# Hack to make things work again - we can not use a shallow repository. | |
git: | |
depth: 2147483647 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks