forked from avisota/contao-message-renderer-mailchimp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
34 lines (25 loc) · 729 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
language: php
php:
- "5.4"
- "5.5"
- "5.6"
env:
- CONTAO_VERSION=~3.5.0
# Exclude impossible Contao Version combinations.
matrix:
exclude:
- php: "5.3"
env: CONTAO_VERSION=~3.5.0
sudo: false
before_install:
- phpenv config-add travis.php.ini
- COMPOSER_ROOT_VERSION=3.1.0
- if [ -n "GITHUB_TOKEN" ]; then composer config github-oauth.github.com ${GITHUB_TOKEN}; fi;
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