-
Notifications
You must be signed in to change notification settings - Fork 23
/
Makefile
67 lines (54 loc) · 1.94 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
# SPDX-FileCopyrightText: 2022-2023 Technology Innovation Institute (TII)
#
# SPDX-License-Identifier: Apache-2.0
SHELL := bash
PYTHON_TARGETS := $(shell find . -name "*.py" ! -path "*venv*" ! -path "*eggs*")
define target_success
@printf "\033[32m==> Target \"$(1)\" passed\033[0m\n\n"
endef
.DEFAULT_GOAL := help
TARGET: ## DESCRIPTION
@echo "TARGET is here only to provide the header for 'help'"
help: ## Show this help message
@grep -E '^[a-zA-Z_-]+:.*?##.*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}'
pre-push: test format check ## Run tests and flake checks
$(call target_success,$@)
test-ci: check ## Run CI tests
pytest -vx -k "not skip_in_ci" tests/
$(call target_success,$@)
check: clean
nix --extra-experimental-features 'flakes nix-command' flake check
test: ## Run tests
pytest -vx tests/
$(call target_success,$@)
format: clean ## Reformat with black
@for py in $(PYTHON_TARGETS); \
do echo "$$py:"; \
black -q $$py; \
done
$(call target_success,$@)
release-asset: clean ## Build release asset
mkdir -p build/
nix run --extra-experimental-features 'flakes nix-command' .#sbomnix -- . \
--cdx=./build/sbom.runtime.cdx.json \
--spdx=./build/sbom.runtime.spdx.json \
--csv=./build/sbom.runtime.csv
nix run --extra-experimental-features 'flakes nix-command' .#sbomnix -- --buildtime . \
--cdx=./build/sbom.buildtime.cdx.json \
--spdx=./build/sbom.buildtime.spdx.json \
--csv=./build/sbom.buildtime.csv
@echo ""
@echo "Built release asset:"
ls -la build
$(call target_success,$@)
clean: ## Remove build artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
find . -name '.eggs' -exec rm -rf {} +
rm -fr dist/
rm -fr build/
rm -fr .pytest_cache/
$(call target_success,$@)
pristine: clean ## Pristine clean: remove all untracked files and folders
git clean -f -d -x
$(call target_success,$@)