forked from PHP-CS-Fixer/PHP-CS-Fixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
155 lines (132 loc) · 6.69 KB
/
.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
language: php
git:
depth: 1
cache:
directories:
- $HOME/.composer
- $HOME/bin
env:
global:
- DEFAULT_COMPOSER_FLAGS="--optimize-autoloader --no-interaction --no-progress"
- COLLECT_COVERAGE=0
- COMPOSER_FLAGS=""
before_install:
# turn off XDebug
- phpenv config-rm xdebug.ini || return 0
# Composer: boost installation
- composer global show hirak/prestissimo -q || travis_retry composer global require $DEFAULT_COMPOSER_FLAGS hirak/prestissimo
jobs:
include:
-
stage: Static Code Analysis
php: 7.2
env: COMPOSER_FLAGS="--no-dev --prefer-stable"
install:
- travis_retry composer update -d dev-tools $DEFAULT_COMPOSER_FLAGS
- composer info -d dev-tools -D | sort
- travis_retry composer update $DEFAULT_COMPOSER_FLAGS $COMPOSER_FLAGS
- composer info -D | sort
- wget --no-clobber --output-document=$HOME/bin/checkbashisms https://sourceforge.net/projects/checkbaskisms/files/2.0.0.2/checkbashisms/download || true
- chmod +x $HOME/bin/checkbashisms
before_script:
- if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then COMMIT_RANGE=$TRAVIS_COMMIT_RANGE; else COMMIT_RANGE="HEAD~..HEAD"; fi;
- export COMMIT_SCA_FILES=`git diff --name-only --diff-filter=ACMRTUXB $COMMIT_RANGE`
script:
# @TODO remove at 3.0
- |
git archive -o /dev/null HEAD -v 2>&1 | grep tests | grep \.php \
| grep -v tests/Test/AbstractFixerTestCase.php \
| grep -v tests/Test/AbstractIntegrationCaseFactory.php \
| grep -v tests/Test/AbstractIntegrationTestCase.php \
| grep -v tests/Test/Assert/AssertTokensTrait.php \
| grep -v tests/Test/IntegrationCase.php \
| grep -v tests/Test/IntegrationCaseFactory.php \
| grep -v tests/Test/IntegrationCaseFactoryInterface.php \
| grep -v tests/Test/InternalIntegrationCaseFactory.php \
| grep -v tests/TestCase.php \
&& (echo "UNKNOWN FILES DETECTED" && travis_terminate 1) || echo "NO UNKNOWN FILES"
- ./check_trailing_spaces.sh || travis_terminate 1
- if [ -n "$COMMIT_SCA_FILES" ]; then ./dev-tools/vendor/bin/phpmd `echo "$COMMIT_SCA_FILES" | grep -Ev "^tests/Fixtures" | xargs | sed 's/ /,/g'` text phpmd.xml || travis_terminate 1; fi
- ./dev-tools/vendor/bin/composer-require-checker check composer.json --config-file=.composer-require-checker.json || travis_terminate 1
- composer normalize -d ./dev-tools ./../composer.json --dry-run
- ./dev-tools/check-shell-scripts.sh
- &STANDARD_TEST_JOB
stage: Fast Test
php: 7.0
install:
# Composer: enforce given Symfony components version
- if [ "$SYMFONY_VERSION" != "" ]; then composer global show symfony/flex -q || travis_retry composer global require $DEFAULT_COMPOSER_FLAGS symfony/flex; fi
- if [ "$SYMFONY_VERSION" != "" ]; then composer config extra.symfony.require $SYMFONY_VERSION || true; fi
- travis_retry composer update $DEFAULT_COMPOSER_FLAGS $COMPOSER_FLAGS
- composer info -D | sort
script:
- vendor/bin/phpunit || travis_terminate 1
- PHP_CS_FIXER_FUTURE_MODE=1 php php-cs-fixer --diff --dry-run -v fix
-
<<: *STANDARD_TEST_JOB
stage: Test
php: 5.6
env: COMPOSER_FLAGS="--prefer-stable --prefer-lowest"
-
<<: *STANDARD_TEST_JOB
stage: Test
php: 7.1
env: SYMFONY_DEPRECATIONS_HELPER=weak PHP_CS_FIXER_TEST_USE_LEGACY_TOKENIZER=1 SYMFONY_VERSION="~4.1.0"
-
<<: *STANDARD_TEST_JOB
stage: Test
php: 7.2
-
<<: *STANDARD_TEST_JOB
stage: Test
php: 7.3
before_script:
- php php-cs-fixer fix --rules @PHP71Migration,@PHP71Migration:risky,blank_line_after_opening_tag -q || travis_terminate 1
-
<<: *STANDARD_TEST_JOB
stage: Test
php: 7.3
env: COLLECT_COVERAGE=1
before_install:
# check phpdbg
- phpdbg --version 2> /dev/null || { echo 'No phpdbg'; export COLLECT_COVERAGE=0; }
# for building a tag release we don't need to collect code coverage
- if [ $TRAVIS_TAG ]; then export COLLECT_COVERAGE=0; fi
# terminate job when no coverage collecting shall be performed
- if [ $COLLECT_COVERAGE == 0 ]; then travis_terminate 0; fi
## regular `before_install`
# turn off XDebug
- phpenv config-rm xdebug.ini || return 0
# Composer: boost installation
- composer global show hirak/prestissimo -q || travis_retry composer global require $DEFAULT_COMPOSER_FLAGS hirak/prestissimo
script:
- phpdbg -qrr vendor/bin/phpunit --testsuite coverage --exclude-group covers-nothing --coverage-clover build/logs/clover.xml || travis_terminate 1
- php vendor/bin/php-coveralls -v
-
<<: *STANDARD_TEST_JOB
stage: Test
php: 7.4snapshot
env: COMPOSER_FLAGS="--ignore-platform-reqs" PHP_CS_FIXER_IGNORE_ENV=1 SYMFONY_DEPRECATIONS_HELPER=weak
-
stage: Deployment
php: 7.1
install: ./dev-tools/build.sh
script:
- PHP_CS_FIXER_TEST_ALLOW_SKIPPING_SMOKE_TESTS=0 vendor/bin/phpunit tests/Smoke/
before_deploy:
# ensure that deployment is happening only if tag matches version of PHP CS Fixer
- test $(php dev-tools/info-extractor.php | jq .version.vnumber) == "\"$TRAVIS_TAG\""
deploy:
provider: releases
api_key:
secure: K9NKi7X1OPz898fxtVc1RfWrSI+4hTFFYOik932wTz1jC4dQJ64Khh1LV9frA1+JiDS3+R6TvmQtpzbkX3y4L75UrSnP1ADH5wfMYIVmydG3ZjTMo8SWQWHmRMh3ORAKTMMpjl4Q7EkRkLp6RncKe+FAFPP5mgv55mtIMaE4qUk=
file: php-cs-fixer.phar
skip_cleanup: true
on:
repo: FriendsOfPHP/PHP-CS-Fixer
tags: true
after_deploy:
- ./dev-tools/trigger-website.sh ${TRAVIS_TOKEN} ${TRAVIS_TAG}
allow_failures:
- php: 7.4snapshot
- env: COLLECT_COVERAGE=1