-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·50 lines (35 loc) · 1.77 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
current_user := $(shell id -u)
current_group := $(shell id -g)
BUILD_DIR := $(PWD)
DOCKER_FLAGS := --interactive --tty
DOCKER_IMAGE := registry.gitlab.com/fun-tech/fundraising-frontend-docker
COVERAGE_FLAGS := --coverage-html coverage
# Show progress in shell environment, hide progress in CI environment
ifndef CI
progress_opts :=
phpcs_progress_opts :=
else
progress_opts := --no-progress
phpcs_progress_opts := -p
endif
install-php:
docker run --rm $(DOCKER_FLAGS) --volume $(BUILD_DIR):/app -w /app --volume ~/.composer:/composer --user $(current_user):$(current_group) $(DOCKER_IMAGE) composer install $(COMPOSER_FLAGS)
update-php:
docker run --rm $(DOCKER_FLAGS) --volume $(BUILD_DIR):/app -w /app --volume ~/.composer:/composer --user $(current_user):$(current_group) $(DOCKER_IMAGE) composer update $(COMPOSER_FLAGS)
ci: phpunit cs stan architecture-check
ci-with-coverage: phpunit-with-coverage cs stan architecture-check
test: phpunit
phpunit:
docker compose run --rm --no-deps app ./vendor/bin/phpunit $(progress_opts)
phpunit-with-coverage:
docker compose -f docker-compose.yml -f docker-compose.debug.yml run --rm --no-deps -e XDEBUG_MODE=coverage app_debug ./vendor/bin/phpunit $(COVERAGE_FLAGS) $(progress_opts)
cs:
docker compose run --rm --no-deps app ./vendor/bin/phpcs $(phpcs_progress_opts)
fix-cs:
docker compose run --rm --no-deps app ./vendor/bin/phpcbf
stan:
docker compose run --rm --no-deps app ./vendor/bin/phpstan analyse --level=9 $(progress_opts) src/ tests/
architecture-check:
docker compose run --rm --no-deps app ./vendor/bin/deptrac analyse $(progress_opts) --fail-on-uncovered --report-uncovered
setup: install-php
.PHONY: install-php update-php ci ci-with-coverage test phpunit phpunit-with-coverage cs fix-cs stan setup architecture-check