Skip to content

Commit 6c758d4

Browse files
committed
Enhancement: Direct builds to container-based infrastructure
1 parent 75e0161 commit 6c758d4

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.travis.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
language: php
22

3+
sudo: false
4+
5+
php:
6+
- 5.3.3
7+
- 5.3
8+
- 5.4
9+
- 5.5
10+
- 5.6
11+
- 7
12+
- hhvm
13+
314
matrix:
415
fast_finish: true
5-
include:
6-
- php: 5.3.3
7-
- php: 5.3
8-
- php: 5.4
9-
- php: 5.5
10-
- php: 5.6
11-
env: CHECK_LINKS=true BUILD_DOCS=true
12-
- php: 7
13-
- php: hhvm
1416
allow_failures:
1517
- php: 7
1618

1719
before_install:
18-
- composer selfupdate
20+
- composer self-update
1921

2022
install:
21-
- if [[ "$CHECK_LINKS" == "true" ]]; then sudo apt-get -y install pypy python-sphinx graphviz; fi
22-
- travis_retry composer install --no-interaction --prefer-source
23+
- composer install --no-interaction --prefer-source
2324

2425
script:
25-
- if [[ "$CHECK_LINKS" == "true" ]]; then cd docs && make linkcheck && cd ..; fi
26-
- if [[ "$BUILD_DOCS" == "true" ]]; then vendor/bin/phpdoc -d src -t docs-api; fi
26+
- vendor/bin/phpdoc -d src -t docs-api
2727
- vendor/bin/phpunit --coverage-text

0 commit comments

Comments
 (0)