forked from aristanetworks/avd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
80 lines (66 loc) · 3.16 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
CURRENT_DIR = $(shell pwd)
# option to run ansible-test sanity: must be either venv or docker (default is docker)
ANSIBLE_TEST_MODE ?= docker
# Root path for MKDOCS content
WEBDOC_BUILD = ansible_collections/arista/avd/docs/_build
MUFFET_TIMEOUT ?= 60
.PHONY: help
help: ## Display help message
@grep -E '^[0-9a-zA-Z_-]+\.*[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
#########################################
# Ansible Collection actions #
#########################################
.PHONY: collection-build
collection-build: ## Build arista.cvp collection locally
ansible-galaxy collection build --force ansible_collections/arista/avd
#########################################
# Code Validation using ansible-test #
#########################################
.PHONY: sanity
sanity: sanity-info sanity-lint sanity-import ## Run ansible-test sanity validation.
.PHONY: sanity-info
sanity-info: ## Show information about ansible-test
cd ansible_collections/arista/avd/ ; ansible-test env
.PHONY: sanity-lint
sanity-lint: ## Run ansible-test sanity for code sanity
cd ansible_collections/arista/avd/ ; \
ansible-test sanity --requirements --$(ANSIBLE_TEST_MODE) --skip-test import
.PHONY: sanity-import
sanity-import: ## Run ansible-test sanity for code import
cd ansible_collections/arista/avd/ ; \
ansible-test sanity --requirements --$(ANSIBLE_TEST_MODE) --test import
.PHONY: galaxy-importer
galaxy-importer: ## Run galaxy importer tests
rm -f *.tar.gz && \
ansible-galaxy collection build --force ansible_collections/arista/avd && \
python -m galaxy_importer.main *.tar.gz
#############################################
# Run unit test cases using ansible-test #
#############################################
.PHONY: unit-tests
unit-tests: ## Run unit test cases using ansible-test
cd ansible_collections/arista/avd/ ; \
ansible-test units --requirements --$(ANSIBLE_TEST_MODE) -vv
###################################################
# Run integration test cases using ansible-test #
###################################################
.PHONY: integration-tests
integration-tests: ## Run integration test cases using ansible-test
cd ansible_collections/arista/avd/ ; \
ansible-test integration --requirements --$(ANSIBLE_TEST_MODE)
#########################################
# Documentation actions #
#########################################
.PHONY: webdoc
webdoc: ## Build documentation to publish static content
( cd $(WEBDOC_BUILD) ; \
python ansible2rst.py ; \
mkdir ../modules/ ; \
find . -name '*.rst' -exec pandoc {} --from rst --to gfm -o ../modules/{}.md \;)
cp $(CURRENT_DIR)/contributing.md $(WEBDOC_BUILD)/.. ;\
cp -r $(CURRENT_DIR)/media $(WEBDOC_BUILD)/../ ;\
cd $(CURRENT_DIR)
mkdocs build -f mkdocs.yml
.PHONY: check-avd-404
check-avd-404: ## Check local 404 links for AVD documentation
docker run --rm --network container:webdoc_avd raviqqe/muffet:2.6.1 http://127.0.0.1:8000/ -e ".*fonts.googleapis.com.*" -e ".*fonts.gstatic.com.*" -e ".*tools.ietf.org.*" -e ".*edit.*" -e ".*docs.github.com.*" -e "twitter.com" -f --max-redirections=3 --timeout=$(MUFFET_TIMEOUT) --rate-limit=1