forked from Netflix/dgs-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
40 lines (28 loc) · 1.3 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
.PHONY: help all
.DEFAULT_GOAL := help
SHELL = /bin/sh
## Gradle
GW = ./gradlew
GFLAGS ?=
GW_CMD = $(GW) $(GFLAGS)
# GW_OPT_DISABLE_LOCAL=-x autoLintGradle
GW_OPT_DISABLE_LOCAL=
format: ## Formats source code
$(GW_CMD) formatKotlin
publish-local: ## Clans, bulds, and publishes the Codegen artifacts to mavenLocal, as a SNAPSHOT.
$(GW_CMD) $(GW_OPT_DISABLE_LOCAL) clean build publishToMavenLocal
test-examples_py: ## Modify the examples to use the latest Codegen SNAPSHOT, publishes the snapshot locally, and builds the examples.
scripts/test-examples.py -v -g -k --path=build/examples
test-examples: /usr/local/bin/python3 ## Modify the examples to use the latest Codegen SNAPSHOT, publishes the snapshot locally, and builds the examples.
$(MAKE) publish-local
$(MAKE) install-py-libs
$(MAKE) test-examples_py
install-py-libs: ## Installs the Python Modules required by the scripts.
pip3 install -r scripts/requirements.txt
/usr/local/bin/python3: ## Installs Python3 via brew.
brew install python3
all: format test-examples ## Cleans, checks/tests, publishes the plugin locally and runs the examples.
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
%: ## Runs a given gradle task. e.g. check
$(GW_CMD) $(@F)