This repository was archived by the owner on Feb 6, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 8
8
9
9
env :
10
10
global :
11
- - COMPOSER_ARGS="--no-interaction --no-plugins "
11
+ - COMPOSER_ARGS="--no-interaction"
12
12
- COVERAGE_DEPS="satooshi/php-coveralls"
13
13
14
14
matrix :
@@ -19,8 +19,9 @@ matrix:
19
19
- php : 7.1
20
20
env :
21
21
- DEPS=locked
22
+ - CS_CHECK=true
23
+ - BENCHMARKS=true
22
24
- TEST_COVERAGE=true
23
- - CHECK_CS=true
24
25
- php : 7.1
25
26
env :
26
27
- DEPS=latest
@@ -35,12 +36,12 @@ matrix:
35
36
- DEPS=latest
36
37
37
38
before_install :
38
- - if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || true ; fi
39
+ - if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
39
40
40
41
install :
41
42
- travis_retry composer install $COMPOSER_ARGS
42
43
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
43
- - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest --prefer-stable ; fi
44
+ - if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable $COMPOSER_ARGS ; fi
44
45
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
45
46
- stty cols 120 && composer show
46
47
@@ -50,7 +51,7 @@ script:
50
51
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
51
52
52
53
after_script :
53
- - if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer upload-coverage ; fi
54
+ - if [[ $TEST_COVERAGE == 'true' ]]; then composer upload-coverage ; fi
54
55
55
56
notifications :
56
57
email : false
You can’t perform that action at this time.
0 commit comments