-
-
Notifications
You must be signed in to change notification settings - Fork 438
/
Makefile
90 lines (70 loc) · 3.28 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
dcphp=$$(echo "docker-compose exec php")
dcnode=$$(echo "docker-compose exec node")
.PHONY: it
it: vendor fix stan test ## Run useful checks before commits
.PHONY: help
help: ## Display this list of targets with descriptions
@grep -E '^[a-zA-Z0-9_-]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
.PHONY: setup
setup: build docs/node_modules vendor ## Prepare the local environment
.PHONY: build
build: ## Build the local Docker containers
# Using short options of `id` to ensure compatibility with macOS, see https://github.com/nuwave/lighthouse/pull/2504
docker-compose build --pull --build-arg USER_ID=$(shell id -u) --build-arg GROUP_ID=$(shell id -g)
.PHONY: up
up: ## Bring up the docker-compose stack
docker-compose up --detach
.PHONY: fix
fix: rector php-cs-fixer prettier ## Automatically refactor and format code
.PHONY: rector
rector: up ## Refactor code with Rector
${dcphp} vendor/bin/rector process
.PHONY: php-cs-fixer
php-cs-fixer: up ## Format code with php-cs-fixer
${dcphp} vendor/bin/php-cs-fixer fix
.PHONY: prettier
prettier: up ## Format code with prettier
${dcnode} yarn run prettify
.PHONY: stan
stan: up ## Run static analysis with PHPStan
${dcphp} vendor/bin/phpstan
.PHONY: test
test: up ## Run tests with PHPUnit
${dcphp} vendor/bin/phpunit
.PHONY: bench
bench: up ## Run benchmarks with PHPBench
${dcphp} vendor/bin/phpbench run --report=aggregate
vendor: up composer.json ## Install composer dependencies
${dcphp} composer update
${dcphp} composer validate --strict
${dcphp} composer normalize
.PHONY: php
php: up ## Open an interactive shell into the PHP container
${dcphp} bash
.PHONY: node
node: up ## Open an interactive shell into the Node container
${dcnode} bash
.PHONY: release
release: ## Prepare the docs for a new release
rm -rf docs/6 && cp -r docs/master docs/6
.PHONY: docs
docs: up ## Render the docs in a development server
${dcnode} yarn run start
docs/node_modules: up docs/package.json docs/yarn.lock ## Install yarn dependencies
${dcnode} yarn
.PHONY: proto/update-reports
proto/update-reports:
${dcphp} curl --silent --show-error --fail --output src/Tracing/FederatedTracing/reports.proto https://usage-reporting.api.apollographql.com/proto/reports.proto
${dcphp} sed --in-place 's/ \[(js_use_toArray) = true]//g' src/Tracing/FederatedTracing/reports.proto
${dcphp} sed --in-place 's/ \[(js_preEncoded) = true]//g' src/Tracing/FederatedTracing/reports.proto
${dcphp} sed --in-place '3 i option php_namespace = "Nuwave\\\\Lighthouse\\\\Tracing\\\\FederatedTracing\\\\Proto";' src/Tracing/FederatedTracing/reports.proto
${dcphp} sed --in-place '4 i option php_metadata_namespace = "Nuwave\\\\Lighthouse\\\\Tracing\\\\FederatedTracing\\\\Proto\\\\Metadata";' src/Tracing/FederatedTracing/reports.proto
.PHONY: proto
proto:
docker run --rm --volume=.:/workdir --workdir=/workdir --pull=always bufbuild/buf generate
rm -rf src/Tracing/FederatedTracing/Proto
# Using short options of `id` to ensure compatibility with macOS, see https://github.com/nuwave/lighthouse/pull/2504
sudo chown --recursive "$(shell id -u):$(shell id -g)" proto-tmp
mv proto-tmp/Nuwave/Lighthouse/Tracing/FederatedTracing/Proto src/Tracing/FederatedTracing/Proto
rm -rf proto-tmp
$(MAKE) php-cs-fixer