Skip to content

Commit 855f0dc

Browse files
committed
Revert "Update travis to use phive"
This reverts commit 31e733f.
1 parent f9c9f76 commit 855f0dc

File tree

1 file changed

+16
-6
lines changed

1 file changed

+16
-6
lines changed

.travis.yml

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,34 @@
11
language: php
2-
services:
3-
- docker
42

53
matrix:
64
include:
75
- php: 7.0
6+
env:
7+
# Test commited lock file
8+
- COMPOSER_LOCK=true
89
- php: 7.1
910
env:
11+
# Test code standard
1012
- STATIC_ANALYSIS=true
13+
# Test with updated dependencies
1114
- php: 7.2
1215
- php: 7.3
1316
- php: 7.4
1417
fast_finish: true
1518

1619
install:
17-
- make setup
18-
- composer install
20+
- |
21+
if [[ $COMPOSER_LOCK = true ]]; then
22+
composer install
23+
else
24+
composer update
25+
fi
26+
- composer $COMPOSER
1927
# coding style
2028
- if [[ $STATIC_ANALYSIS != "" ]]; then composer create-project symplify/easy-coding-standard:v2.5.12 temp/ecs; fi
2129

2230
script:
23-
- ./tools/phpunit --coverage-clover=coverage.xml -v
31+
- vendor/bin/phpunit --coverage-clover=coverage.xml -v
2432
# coding style
2533
- if [[ $STATIC_ANALYSIS != "" ]]; then temp/ecs/bin/ecs check src tests; fi
2634

@@ -29,6 +37,8 @@ after_script:
2937
- php coveralls.phar --verbose;
3038

3139
notifications:
40+
irc: "irc.freenode.org#phpdocumentor"
3241
email:
33-
- me@mikevanriel.com
42+
- mike.vanriel@naenius.com
3443
44+

0 commit comments

Comments
 (0)