blob: 2edb1a23e321497d64d8f99b1fe305c0e6804c56 [file] [log] [blame]
Zack Williams712caf62020-04-28 13:37:41 -07001# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
2# SPDX-License-Identifier: Apache-2.0
3
4SHELL = bash -e -o pipefail
5
6# Common set of args, set to --debug for more output
7COMMON_ARGS ?= --debug
8
9# tooling binaries
10VIRTUALENV ?= virtualenv -p python3
11PYTHON ?= python3
12# change to be 'python3 -m cProfile -s cumtime' to profile a script
13
14.DEFAULT_GOAL := help
15.PHONY: test lint yamllint license help build siterender buildcollector sync
16
17# Create the virtualenv with all the tools installed
18VENV_NAME = venv_sjsg
19
20$(VENV_NAME): requirements.txt
21 $(VIRTUALENV) $@ ;\
22 source ./$@/bin/activate ; set -u ;\
23 $(PYTHON) -m pip install -r requirements.txt yamllint
24 echo "To enter virtualenv, run 'source $@/bin/activate'"
25
26# build targets
27
Zack Williamscb2746d2020-12-16 10:27:24 -070028products:
29 mkdir products
30
31site:
32 mkdir site
33
34
Zack Williams712caf62020-04-28 13:37:41 -070035build: buildcollector siterender ## Collect build info and create website
36
Zack Williamscb2746d2020-12-16 10:27:24 -070037buildcollector: $(VENV_NAME) products ## Collect build information from Jenkins jobs
Zack Williams712caf62020-04-28 13:37:41 -070038 source ./$</bin/activate ; set -u ;\
39 $(PYTHON) buildcollector.py scrape.yaml --credentials credentials.yaml $(COMMON_ARGS)
40
Zack Williamscb2746d2020-12-16 10:27:24 -070041siterender: $(VENV_NAME) site ## Create static website from build information
Zack Williams712caf62020-04-28 13:37:41 -070042 source ./$</bin/activate ; set -u ;\
43 $(PYTHON) siterender.py $(COMMON_ARGS)
44 cp -r static/* site/
45
46serve:
47 cd site && $(PYTHON) -m http.server
48
49sync:
50 rsync --delete-after -avP site/ ubuntu@static.opennetworking.org:/srv/sites/certification.opennetworking.org/
51
52# testing targets
53test: yamllint tox ## run all tests
54
55# YAML files, excluding venv and cookiecutter directories
56YAML_FILES ?= $(shell find . -type d \( -path "./venv_sjsc" \) -prune -o -type f \( -name '*.yaml' -o -name '*.yml' \) -print )
57
58yamllint: $(VENV_NAME) ## lint YAML format using yamllint
59 source ./$</bin/activate ; set -u ;\
60 yamllint --version ;\
61 yamllint \
62 -d "{extends: default, rules: {line-length: {max: 139}}}" \
63 -s $(YAML_FILES)
64
65tox: ## test code with tox
66 tox
67
68license: ## Check code for licensing with REUSE
69 reuse --root . lint
70
71clean: ## Delete all temporary files
Zack Williamscb2746d2020-12-16 10:27:24 -070072 rm -rf products site
Zack Williams712caf62020-04-28 13:37:41 -070073
74clean-all: clean ## Delete virtualenv and all cached job information
Zack Williamscb2746d2020-12-16 10:27:24 -070075 rm -rf $(VENV_NAME) jobs .tox
Zack Williams712caf62020-04-28 13:37:41 -070076
77help: ## Print help for each target
Zack Williamscb2746d2020-12-16 10:27:24 -070078 @echo sjsg test targets
Zack Williams712caf62020-04-28 13:37:41 -070079 @echo
80 @grep '^[[:alnum:]_-]*:.* ##' $(MAKEFILE_LIST) \
81 | sort | awk 'BEGIN {FS=":.* ## "}; {printf "%-25s %s\n", $$1, $$2};'