Skip to content

Instantly share code, notes, and snippets.

@discordier
Last active December 31, 2019 02:39
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save discordier/8d4b495d72a8ad93fa94 to your computer and use it in GitHub Desktop.
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.
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
@baumannsven
Copy link

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment