-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
37 lines (25 loc) · 1.33 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
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:latest
COVERAGE_FLAGS := --coverage-html coverage
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
ci-with-coverage: phpunit-with-coverage cs stan
test: phpunit
phpunit:
docker compose run --rm --no-deps app ./vendor/bin/phpunit
phpunit-with-coverage:
docker compose -f docker-compose.yml run --rm --no-deps -e XDEBUG_MODE=coverage app ./vendor/bin/phpunit $(COVERAGE_FLAGS)
cs:
docker compose run --rm --no-deps app ./vendor/bin/phpcs
fix-cs:
docker compose run --rm --no-deps app ./vendor/bin/phpcbf
stan:
docker compose run --rm --no-deps app php -d memory_limit=1G ./vendor/bin/phpstan analyse --level=9 --no-progress src/ tests/
setup: install-php
.PHONY: install-php update-php ci ci-with-coverage test phpunit phpunit-with-coverage cs fix-cs stan setup