-
Notifications
You must be signed in to change notification settings - Fork 19
/
Makefile
126 lines (96 loc) · 3.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
USER_GROUP := $(shell id -u):$(shell id -g)
UPSTREAM_OWNER := $(shell scripts/git/upstream_owner.sh)
COMMIT := $(shell scripts/git/commit.sh)
BLACK_EXCLUDES := "/interfaces|/venv"
ifeq ($(OS),Windows_NT)
detected_OS := Windows
else
detected_OS := $(shell uname -s)
endif
.PHONY: format
format: json-schema
docker run --rm -v "$(CURDIR):/code" -w /code pyfound/black:22.10.0 black --exclude=$(BLACK_EXCLUDES) .
cd monitoring && make format
.PHONY: lint
lint: shell-lint python-lint
cd monitoring && make lint
cd schemas && make lint
.PHONY: check-hygiene
check-hygiene: python-lint hygiene validate-uss-qualifier-docs shell-lint json-schema-lint
.PHONY: python-lint
python-lint:
docker run --rm -v "$(CURDIR):/code" -w /code pyfound/black:22.10.0 black --check --exclude=$(BLACK_EXCLUDES) . || (echo "Linter didn't succeed. You can use the following command to fix python linter issues: make format" && exit 1)
.PHONY: hygiene
hygiene:
test/repo_hygiene/repo_hygiene.sh
.PHONY: validate-uss-qualifier-docs
validate-uss-qualifier-docs:
cd monitoring/uss_qualifier && make validate-docs
.PHONY: shell-lint
shell-lint:
find . -name '*.sh' ! -path "./interfaces/*" | xargs docker run --rm -v "$(CURDIR):/monitoring" -w /monitoring koalaman/shellcheck
.PHONY: json-schema
json-schema:
cd schemas && make format
.PHONY: json-schema-lint
json-schema-lint:
cd schemas && make lint
# This mirrors the hygiene-tests continuous integration workflow job (.github/workflows/ci.yml)
.PHONY: hygiene-tests
hygiene-tests: check-hygiene
.PHONY: image
image:
cd monitoring && make image
tag:
scripts/tag.sh $(UPSTREAM_OWNER)/monitoring/v$(VERSION)
.PHONY: start-locally
start-locally:
build/dev/run_locally.sh up -d
.PHONY: probe-locally
probe-locally:
monitoring/prober/run_locally.sh
.PHONY: start-uss-mocks
start-uss-mocks:
monitoring/mock_uss/start_all_local_mocks.sh
.PHONY: stop-uss-mocks
stop-uss-mocks:
monitoring/mock_uss/stop_all_local_mocks.sh
# The prepended dash ignores errors. This allows collecting logs even if some containers are missing.
.PHONY: collect-local-logs
collect-local-logs:
mkdir -p logs
-sh -c "build/dev/run_locally.sh logs --timestamps" > logs/local_infra.log 2>&1
-docker logs mock_uss_scdsc_a > logs/mock_uss_scdsc_a.log 2>&1
-docker logs mock_uss_scdsc_b > logs/mock_uss_scdsc_b.log 2>&1
-docker logs mock_uss_geoawareness > logs/mock_uss_geoawareness.log 2>&1
-docker logs mock_uss_ridsp > logs/mock_uss_ridsp.log 2>&1
-docker logs mock_uss_riddp > logs/mock_uss_riddp.log 2>&1
-docker logs mock_uss_ridsp_v19 > logs/mock_uss_ridsp_v19.log 2>&1
-docker logs mock_uss_riddp_v19 > logs/mock_uss_riddp_v19.log 2>&1
-docker logs mock_uss_tracer > logs/mock_uss_tracer.log 2>&1
-docker logs mock_uss_scdsc_interaction_log > logs/mock_uss_scdsc_interaction_log.log 2>&1
.PHONY: stop-locally
stop-locally:
build/dev/run_locally.sh stop
.PHONY: down-locally
down-locally:
build/dev/run_locally.sh down
.PHONY: check-monitoring
check-monitoring:
cd monitoring && make test
# This mirrors the monitoring-tests continuous integration workflow job (.github/workflows/ci.yml)
.PHONY: monitoring-tests
monitoring-tests: check-monitoring
# This reproduces the entire continuous integration workflow (.github/workflows/ci.yml)
.PHONY: presubmit
presubmit: hygiene-tests monitoring-tests
# For local development when restarts are frequently required (such as when testing changes on the DSS)
.PHONY: restart-all
restart-all: stop-uss-mocks down-locally start-locally start-uss-mocks
# For local development when restarts of the mock USS are frequently required
.PHONY: restart-uss-mocks
restart-uss-mocks: stop-uss-mocks start-uss-mocks
# To be run locally whenever a direct dependency has been updated in requirements.in
.PHONY: update-pinned-dependencies
update-pinned-dependencies:
./scripts/pip_tools/pip_compile.sh --generate-hashes --output-file=requirements.txt requirements.in