forked from drupal-composer/drupal-scaffold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
43 lines (35 loc) · 841 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
35
36
37
38
39
40
41
42
43
language: php
branches:
# Only test the master branch and SemVer tags.
only:
- master
- /^[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+.*$/
matrix:
fast_finish: true
include:
- php: 7.2
env: 'DEPENCENCIES=highest'
- php: 7.2
- php: 7.1
- php: 7.0.11
- php: 5.6
env: 'SCENARIO=phpunit4'
- php: 5.5
env: 'SCENARIO=phpunit4'
- php: 5.5
env: 'SCENARIO=phpunit4 DEPENDENCIES=lowest'
sudo: false
git:
depth: 10000
before_install:
- phpenv config-rm xdebug.ini
- composer --verbose self-update
- composer --version
install:
- 'composer scenario "${SCENARIO}" "${DEPENDENCIES}"'
before_script:
- git config --global user.email "travisci@example.com"
- git config --global user.name "Travis CI Test"
- export COMPOSER_PROCESS_TIMEOUT=600
script:
- composer test