-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
373 lines (343 loc) · 9.31 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
#!/usr/bin/make -f
# Portions of this file contributed by NIST are governed by the
# following statement:
#
# This software was developed at the National Institute of Standards
# and Technology by employees of the Federal Government in the course
# of their official duties. Pursuant to Title 17 Section 105 of the
# United States Code, this software is not subject to copyright
# protection within the United States. NIST assumes no responsibility
# whatsoever for its use by other parties, and makes no guarantees,
# expressed or implied, about its quality, reliability, or any other
# characteristic.
#
# We would appreciate acknowledgement if the software is used.
SHELL := /bin/bash
PYTHON3 ?= python3
all: \
.venv-pre-commit/var/.pre-commit-built.log \
all-shapes \
all-var
$(MAKE) \
--directory catalog
$(MAKE) \
--directory reports
.PHONY: \
all-dependencies \
all-ontology \
all-shapes \
all-taxonomy \
all-tests \
all-var \
check-catalog \
check-dependencies \
check-mypy \
check-ontology \
check-reports \
check-shapes \
check-supply-chain \
check-supply-chain-pre-commit \
check-supply-chain-submodules \
check-taxonomy \
check-tests
.git_submodule_init.done.log: \
.gitmodules
# CASE (to retrieve rdf-toolkit)
test -r dependencies/CASE/README.md \
|| git submodule update \
--init \
dependencies/CASE
# CASE-develop
test -r dependencies/CASE-develop/README.md \
|| git submodule update \
--init \
dependencies/CASE-develop
$(MAKE) \
--directory dependencies/CASE-develop \
.git_submodule_init.done.log
# CASE-develop-2.0.0
test -r dependencies/CASE-develop-2.0.0/README.md \
|| git submodule update \
--init \
dependencies/CASE-develop-2.0.0
$(MAKE) \
--directory dependencies/CASE-develop-2.0.0 \
.git_submodule_init.done.log
# CASE-unstable
test -r dependencies/CASE-unstable/README.md \
|| git submodule update \
--init \
dependencies/CASE-unstable
$(MAKE) \
--directory dependencies/CASE-unstable \
.git_submodule_init.done.log
# CASE-unstable-2.0.0
test -r dependencies/CASE-unstable-2.0.0/README.md \
|| git submodule update \
--init \
dependencies/CASE-unstable-2.0.0
$(MAKE) \
--directory dependencies/CASE-unstable-2.0.0 \
.git_submodule_init.done.log
# CDO-Shapes-Time
test -r dependencies/CDO-Shapes-Time/README.md \
|| git submodule update \
--init \
dependencies/CDO-Shapes-Time
$(MAKE) \
--directory dependencies/CDO-Shapes-Time \
.git_submodule_init.done.log
# cito
test -r dependencies/cito/README.md \
|| git submodule update \
--init \
dependencies/cito
# sdw
test -r dependencies/sdw/README.md \
|| git submodule update \
--init \
dependencies/sdw
# swan-ontology
test -r dependencies/swan-ontology/README.md \
|| git submodule update \
--init \
dependencies/swan-ontology
$(MAKE) \
--directory dependencies/CASE \
.lib.done.log
touch $@
.venv.done.log: \
dependencies/CASE/dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/case_shacl_inheritance_reviewer/__init__.py \
dependencies/CASE/dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/setup.cfg \
dependencies/CASE/dependencies/UCO/requirements.txt \
requirements.txt
rm -rf venv
$(PYTHON3) -m venv \
venv
source venv/bin/activate \
&& pip install \
--upgrade \
pip \
setuptools \
wheel
source venv/bin/activate \
&& pip install \
dependencies/CASE/dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer
source venv/bin/activate \
&& pip install \
--requirement dependencies/CASE/dependencies/UCO/requirements.txt
source venv/bin/activate \
&& pip install \
--requirement requirements.txt
touch $@
# This virtual environment is meant to be built once and then persist, even through 'make clean'.
# If a recipe is written to remove this flag file, it should first run `pre-commit uninstall`.
.venv-pre-commit/var/.pre-commit-built.log:
rm -rf .venv-pre-commit
test -r .pre-commit-config.yaml \
|| (echo "ERROR:Makefile:pre-commit is expected to install for this repository, but .pre-commit-config.yaml does not seem to exist." >&2 ; exit 1)
$(PYTHON3) -m venv \
.venv-pre-commit
source .venv-pre-commit/bin/activate \
&& pip install \
--upgrade \
pip \
setuptools \
wheel
source .venv-pre-commit/bin/activate \
&& pip install \
pre-commit
source .venv-pre-commit/bin/activate \
&& pre-commit install
mkdir -p \
.venv-pre-commit/var
touch $@
all-dependencies: \
.venv.done.log
$(MAKE) \
--directory dependencies
all-ontology: \
all-dependencies
$(MAKE) \
--directory ontology
all-shapes: \
all-ontology
$(MAKE) \
--directory shapes
all-taxonomy: \
all-dependencies
$(MAKE) \
--directory taxonomy/devices
all-tests: \
all-shapes
$(MAKE) \
--directory tests
# This descent recipe balances resource local availability, resource
# remote availability, and Git noise from resource regeneration.
#
# If the remote resource (Digital Corpora's index.tsv) becomes
# unavailable or alters its format, GitHub CI will continue to work for
# CASE-Corpora on runs unrelated to updating Digital Corpora references.
# If a developer runs a local build, the TSV resoure will be refreshed
# and can be reviewed and committed independently.
# Record churn from Digital Corpora's scan updates (particularly record
# mtimes) will not cause significant Git noise for CASE-Corpora, because
# the 'var/' folder filters the Git-tracked records to those listed as
# used under 'catalog/datasets/digitalcorpora-*'.
#
# An extra reset-retry step is added on the descending Make call to
# handle the case where new Digital Corpora references are committed
# under 'catalog/', but not committed to the Git-tracked TSV under
# 'var/'. Without this retry step, CI fails for a reason not relevant
# to the maintainer's local development environment. This case does
# trigger a CI download from Digital Corpora, but the download will only
# apply until the TSV update is committed.
all-var:
test "x$${GITHUB_ACTIONS}" != "xtrue" \
|| cp \
-n \
-v \
var/digital_corpora_index.tsv \
var/cached-digital_corpora_index.tsv \
|| test -r \
var/cached-digital_corpora_index.tsv
$(MAKE) \
--directory var \
|| ( \
$(MAKE) \
--directory var \
clean \
&& $(MAKE) \
--directory var \
)
check: \
.venv-pre-commit/var/.pre-commit-built.log \
check-mypy \
check-reports \
check-tests
check-catalog: \
all-var \
check-shapes \
check-taxonomy
$(MAKE) \
--directory catalog \
check
check-dependencies: \
all-dependencies
$(MAKE) \
--directory dependencies \
check
check-mypy: \
.venv.done.log
source venv/bin/activate \
&& mypy --strict \
catalog \
src \
tests
check-ontology: \
all-ontology \
check-dependencies
$(MAKE) \
--directory ontology \
check
check-reports: \
check-catalog
$(MAKE) \
--directory reports \
check
check-shapes: \
all-shapes \
check-ontology
$(MAKE) \
--directory shapes \
check
check-supply-chain: \
check-supply-chain-pre-commit \
check-supply-chain-submodules \
check-mypy
# Update pre-commit configuration and use the updated config file to
# review code. Only have Make exit if 'pre-commit run' modifies files.
check-supply-chain-pre-commit: \
.venv-pre-commit/var/.pre-commit-built.log
source .venv-pre-commit/bin/activate \
&& pre-commit autoupdate
git diff \
--exit-code \
.pre-commit-config.yaml \
|| ( \
source .venv-pre-commit/bin/activate \
&& pre-commit run \
--all-files \
--config .pre-commit-config.yaml \
) \
|| git diff \
--stat \
--exit-code \
|| ( \
echo \
"WARNING:Makefile:pre-commit configuration can be updated. It appears the updated would change file formatting." \
>&2 \
; exit 1 \
)
@git diff \
--exit-code \
.pre-commit-config.yaml \
|| echo \
"INFO:Makefile:pre-commit configuration can be updated. It appears the update would not change file formatting." \
>&2
check-supply-chain-submodules: \
.git_submodule_init.done.log
git submodule update \
--remote
git diff \
--exit-code \
--ignore-submodules=dirty \
dependencies
check-taxonomy: \
all-taxonomy \
check-shapes
$(MAKE) \
--directory taxonomy/devices \
check
check-tests: \
all-tests \
check-shapes
$(MAKE) \
--directory tests \
check
clean:
@$(MAKE) \
--directory reports \
clean
@$(MAKE) \
--directory taxonomy/devices \
clean
@$(MAKE) \
--directory shapes \
clean
@$(MAKE) \
--directory ontology \
clean
@$(MAKE) \
--directory catalog \
clean
@$(MAKE) \
--directory dependencies \
clean
@$(MAKE) \
--directory var \
clean
@rm -f \
.*.done.log
dependencies/CASE/dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/case_shacl_inheritance_reviewer/__init__.py: \
.git_submodule_init.done.log
test -r $@
touch $@
dependencies/CASE/dependencies/UCO/dependencies/CASE-Utility-SHACL-Inheritance-Reviewer/setup.cfg: \
.git_submodule_init.done.log
test -r $@
touch $@
dependencies/CASE/dependencies/UCO/requirements.txt: \
.git_submodule_init.done.log
test -r $@
touch $@