-
Notifications
You must be signed in to change notification settings - Fork 53
/
Makefile
127 lines (116 loc) · 4.86 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
# Default values
php ?= 8.3
sf ?= 7.1
db ?= sqlite
args ?=
# Allowed PHP and Symfony version combinations
# (PHP_VERSION;SYMFONY_VERSION)
valid_combinations = \
8.2;5.4 \
8.2;6.4 \
8.2;7.1 \
8.3;5.4 \
8.3;6.4 \
8.3;7.1
current_combination = $(php);$(sf)
# list of config files to provide to docker compose
compose_files = -f tools/docker/compose.yaml
# Set the DATABASE_URL and dedicated compose file based on the selected database
ifeq ($(db),mysql)
DATABASE_URL = "mysql://auditor:password@mysql/auditor?serverVersion=8&charset=utf8mb4"
compose_files += -f tools/docker/compose.mysql.yaml
else ifeq ($(db),pgsql)
DATABASE_URL = "pgsql://postgres:password@pgsql/auditor?serverVersion=15&charset=utf8"
compose_files += -f tools/docker/compose.pgsql.yaml
else ifeq ($(db),mariadb)
DATABASE_URL = "mysql://auditor:password@mariadb/auditor?serverVersion=11&charset=utf8mb4"
compose_files += -f tools/docker/compose.mariadb.yaml
else ifeq ($(db),sqlite)
DATABASE_URL = "sqlite:///:memory:"
else
$(error Unknown database type: $(db))
endif
# Help target
.PHONY: help
help:
@echo "Usage: make <target> [php=<php_version>] [sf=<symfony_version>] [db=<database>] [args=<phpunit_args>]"
@echo ""
@echo "Targets:"
@echo " tests - Run the test suite using PHPUnit."
@echo " cs-fix - Run PHP-CS-Fixer to fix coding standards issues."
@echo " phpstan - Run PHPStan for static code analysis."
@echo ""
@echo "Options:"
@echo " php - PHP version to use (default: $(php)). Supported: 8.2, 8.3"
@echo " sf - Symfony version to use (default: $(sf)). Supported: 5.4, 6.4, 7.1"
@echo " db - Database type (default: $(db)). Supported: sqlite, mysql, pgsql, mariadb"
@echo " args - Additional arguments:"
$(eval $(call set_args,tests))
@echo " Defaults for 'tests' target: $(args)"
$(eval $(call set_args,phpstan))
@echo " Defaults for 'phpstan' target: $(args)"
$(eval $(call set_args,cs-fix))
@echo " Defaults for 'cs-fix' target: $(args)"
@echo ""
@echo "Examples:"
@echo " make tests php=8.2 sf=6.4 db=mysql"
@echo " make cs-fix"
@echo " make phpstan"
@echo " make tests args='--filter=TestClassName'"
@echo ""
@echo "Note: Ensure that the PHP and Symfony versions are valid combinations:"
@echo " $(valid_combinations) (PHP_VERSION;SYMFONY_VERSION)"
# Common target setup
define common_setup
@rm -f composer.lock
@PHP_VERSION=$(php) SYMFONY_VERSION=$(sf) DATABASE_URL=$(DATABASE_URL) \
sh -c "docker compose $(compose_files) run --rm --remove-orphans php-cli composer global config --no-plugins allow-plugins.symfony/flex true"
@PHP_VERSION=$(php) SYMFONY_VERSION=$(sf) \
sh -c "docker compose $(compose_files) run --rm --remove-orphans php-cli composer global require --no-progress --no-scripts --no-plugins symfony/flex --quiet"
@PHP_VERSION=$(php) SYMFONY_VERSION=$(sf) DATABASE_URL=$(DATABASE_URL) \
sh -c "docker compose $(compose_files) run --rm --remove-orphans php-cli composer install --quiet"
endef
# Run PHPUnit target
.PHONY: tests
tests: validate_matrix
$(eval $(call set_args,tests))
$(call common_setup)
PHP_VERSION=$(php) SYMFONY_VERSION=$(sf) DATABASE_URL=$(DATABASE_URL) \
sh -c "docker compose $(compose_files) run --rm --remove-orphans php-cli vendor/bin/phpunit $(args)"
# Run PHPStan target
.PHONY: phpstan
phpstan: validate_matrix
$(eval $(call set_args,phpstan))
$(call common_setup)
@PHP_VERSION=$(php) SYMFONY_VERSION=$(sf) DATABASE_URL=$(DATABASE_URL) \
sh -c "docker compose $(compose_files) run --rm --remove-orphans php-cli composer install --working-dir=tools/phpstan --quiet"
PHP_VERSION=$(php) SYMFONY_VERSION=$(sf) \
sh -c "docker compose $(compose_files) run --rm --remove-orphans php-cli tools/phpstan/vendor/bin/phpstan $(args)"
# Run PHP-CS-Fixer target
.PHONY: cs-fix
cs-fix: validate_matrix
$(eval $(call set_args,cs-fix))
$(call common_setup)
@PHP_VERSION=$(php) SYMFONY_VERSION=$(sf) DATABASE_URL=$(DATABASE_URL) \
sh -c "docker compose $(compose_files) run --rm --remove-orphans php-cli composer install --working-dir=tools/php-cs-fixer --quiet"
PHP_VERSION=$(php) SYMFONY_VERSION=$(sf) \
sh -c "docker compose $(compose_files) run --rm --remove-orphans php-cli tools/php-cs-fixer/vendor/bin/php-cs-fixer $(args)"
# Validate PHP and Symfony version matrix
validate_matrix:
@if ! echo "$(valid_combinations)" | grep -q "$(current_combination)"; then \
echo "Error: Invalid combination of PHP and Symfony versions: php=$(php), sf=$(sf)"; \
echo "Allowed combinations are:"; \
echo "(PHP_VERSION;SYMFONY_VERSION)"; \
echo "$(valid_combinations)" | tr ' ' '\n'; \
exit 1; \
fi
# Set default args for each target
define set_args
ifeq ($(1),tests)
args := --colors=always --no-coverage
else ifeq ($(1),phpstan)
args := analyse src --memory-limit=1G --ansi
else ifeq ($(1),cs-fix)
args := fix --using-cache=no --verbose --ansi
endif
endef