forked from infection/infection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
181 lines (135 loc) · 5.35 KB
/
Makefile
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
.DEFAULT_GOAL := help
.PHONY: help
help:
@echo "\033[33mUsage:\033[0m\n make TARGET\n\n\033[32m#\n# Commands\n#---------------------------------------------------------------------------\033[0m\n"
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//' | awk 'BEGIN {FS = ":"}; {printf "\033[33m%s:\033[0m%s\n", $$1, $$2}'
#
# Variables
#---------------------------------------------------------------------------
BOX=./.tools/box
BOX_URL="https://github.com/humbug/box/releases/download/3.8.0/box.phar"
PHP_CS_FIXER=./.tools/php-cs-fixer
PHP_CS_FIXER_URL="https://cs.sensiolabs.org/download/php-cs-fixer-v2.phar"
PHP_CS_FIXER_CACHE=build/cache/.php_cs.cache
PHPSTAN=./.tools/phpstan
PHPSTAN_URL="https://github.com/phpstan/phpstan/releases/download/0.11.15/phpstan.phar"
PHPUNIT=vendor/bin/phpunit
INFECTION=./build/infection.phar
DOCKER_RUN=docker run --tty --rm --volume "$$PWD":/opt/infection --workdir /opt/infection
DOCKER_RUN_72=$(FLOCK) devTools/*php72*.json $(DOCKER_RUN) infection_php72
DOCKER_RUN_72_IMAGE=devTools/Dockerfile-php72-xdebug.json
DOCKER_RUN_73=$(FLOCK) devTools/*php73*.json $(DOCKER_RUN) infection_php73
DOCKER_RUN_73_IMAGE=devTools/Dockerfile-php73-xdebug.json
FLOCK=./devTools/flock
#
# Commands (phony targets)
#---------------------------------------------------------------------------
.PHONY: compile
compile: ## Bundles Infection into a PHAR
compile: $(INFECTION)
.PHONY: cs
cs: ## Runs PHP-CS-Fixer
cs: $(PHP_CS_FIXER)
$(PHP_CS_FIXER) fix -v --cache-file=$(PHP_CS_FIXER_CACHE)
LC_ALL=C sort -u .gitignore -o .gitignore
.PHONY: phpstan
phpstan: ## Runs PHPStan
phpstan: vendor $(PHPSTAN)
$(PHPSTAN) analyse src --level=max --configuration ./devTools/phpstan-src.neon --no-interaction --no-progress
$(PHPSTAN) analyse tests/phpunit --level=4 --configuration ./devTools/phpstan-tests.neon --no-interaction --no-progress
.PHONY: analyze
analyze: ## Runs Static analyzers and various other checks
analyze: phpstan validate
.PHONY: validate
validate: ## Checks that the composer.json file is valid
validate:
composer validate --strict
.PHONY: test
test: ## Runs all the tests
test: test-autoreview test-unit test-e2e test-infection
.PHONY: test-autoreview
test-autoreview: ## Runs the AutoReview test suite
test-autoreview:
$(PHPUNIT) --configuration=phpunit_autoreview.xml
.PHONY: test-unit
test-unit: ## Runs the unit tests
test-unit: test-unit-72 test-unit-73
.PHONY: test-unit-72
test-unit-72: $(DOCKER_RUN_72_IMAGE) $(PHPUNIT)
$(DOCKER_RUN_72) $(PHPUNIT)
.PHONY: test-unit-73
test-unit-73: $(DOCKER_RUN_73_IMAGE) $(PHPUNIT)
$(DOCKER_RUN_73) $(PHPUNIT)
.PHONY: test-e2e
test-e2e: ## Runs the end-to-end tests
test-e2e: test-e2e-phpdbg test-e2e-xdebug
.PHONY: test-e2e-phpdbg
test-e2e-phpdbg: test-e2e-phpdbg-72 test-e2e-phpdbg-73
.PHONY: test-e2e-phpdbg-72
test-e2e-phpdbg-72: $(DOCKER_RUN_72_IMAGE) $(INFECTION)
$(DOCKER_RUN_72) env PHPDBG=1 ./tests/e2e_tests $(INFECTION)
.PHONY: test-e2e-phpdbg-73
test-e2e-phpdbg-73: $(DOCKER_RUN_73_IMAGE) $(INFECTION)
$(DOCKER_RUN_73) env PHPDBG=1 ./tests/e2e_tests $(INFECTION)
.PHONY: test-e2e-xdebug
test-e2e-xdebug: test-e2e-xdebug-72 test-e2e-xdebug-73
.PHONY: test-e2e-xdebug-72
test-e2e-xdebug-72: $(DOCKER_RUN_72_IMAGE) $(INFECTION)
$(DOCKER_RUN_72) ./tests/e2e_tests $(INFECTION)
.PHONY: test-e2e-xdebug-73
test-e2e-xdebug-73: $(DOCKER_RUN_73_IMAGE) $(INFECTION)
$(DOCKER_RUN_73) ./tests/e2e_tests $(INFECTION)
.PHONY: test-infection
test-infection: ## Runs Infection against itself
test-infection: test-infection-phpdbg test-infection-xdebug
.PHONY: test-infection-phpdbg
test-infection-phpdbg: test-infection-phpdbg-72 test-infection-phpdbg-73
.PHONY: test-infection-phpdbg-72
test-infection-phpdbg-72: $(DOCKER_RUN_72_IMAGE)
$(DOCKER_RUN_72) phpdbg -qrr bin/infection --threads=4
.PHONY: test-infection-phpdbg-73
test-infection-phpdbg-73: $(DOCKER_RUN_73_IMAGE)
$(DOCKER_RUN_73) phpdbg -qrr bin/infection --threads=4
.PHONY: test-infection-xdebug
test-infection-xdebug: test-infection-xdebug-72 test-infection-xdebug-73
.PHONY: test-infection-xdebug-72
test-infection-xdebug-72: $(DOCKER_RUN_72_IMAGE)
$(DOCKER_RUN_72) ./bin/infection --threads=4
.PHONY: test-infection-xdebug-73
test-infection-xdebug-73: $(DOCKER_RUN_73_IMAGE)
$(DOCKER_RUN_73) ./bin/infection --threads=4
#
# Rules from files (non-phony targets)
#---------------------------------------------------------------------------
$(BOX): Makefile
wget $(BOX_URL) --output-document=$(BOX)
chmod a+x $(BOX)
touch $@
$(PHP_CS_FIXER): Makefile
wget $(PHP_CS_FIXER_URL) --output-document=$(PHP_CS_FIXER)
chmod a+x $(PHP_CS_FIXER)
touch $@
$(PHPSTAN): Makefile
wget $(PHPSTAN_URL) --output-document=$(PHPSTAN)
chmod a+x $(PHPSTAN)
touch $@
$(INFECTION): vendor $(shell find bin/ src/ -type f) $(BOX) box.json.dist .git/HEAD
$(BOX) validate
$(BOX) compile
touch $@
vendor: composer.lock
composer install
touch $@
composer.lock: composer.json
composer install
touch $@
$(PHPUNIT): vendor
touch $@
$(DOCKER_RUN_72_IMAGE): devTools/Dockerfile-php72-xdebug
docker build --tag infection_php72 --file devTools/Dockerfile-php72-xdebug .
docker image inspect infection_php72 >> $(DOCKER_RUN_72_IMAGE)
touch $@
$(DOCKER_RUN_73_IMAGE): devTools/Dockerfile-php73-xdebug
docker build --tag infection_php73 --file devTools/Dockerfile-php73-xdebug .
docker image inspect infection_php73 >> $(DOCKER_RUN_73_IMAGE)
touch $@