-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
91 lines (70 loc) · 3.02 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
ANSIBLE_INSTALL_VERSION ?= 2.9.16
SCENARIO ?= all
PATH := $(PWD)/.venv_ansible$(ANSIBLE_INSTALL_VERSION)/bin:$(shell printenv PATH)
SHELL := env PATH=$(PATH) /bin/bash
ifeq ($(SCENARIO), all)
SCENARIO_OPT = "--all"
else
SCENARIO_OPT = "--scenario-name=$(SCENARIO)"
endif
.DEFAULT_GOAL := help
.PHONY: all clean destroy help test
## Make deps, test
all: deps test
## Setup dependencies
deps: .venv_ansible$(ANSIBLE_INSTALL_VERSION)
## Activate the virtualenv
activate: .venv_ansible$(ANSIBLE_INSTALL_VERSION)
@echo -e "\033[0;32mINFO: Activating venv_ansible$(ANSIBLE_INSTALL_VERSION) (ctrl-d to exit)\033[0m"
@exec $(SHELL) --init-file .venv_ansible$(ANSIBLE_INSTALL_VERSION)/bin/activate
## Destroy docker instances, remove virtualenv, molecule temp, .pyc files
clean: destroy
rm -rf .venv_ansible*
rm -rf molecule/*/.cache/
rm -rf molecule/*/.molecule/
find . -name "*.pyc" -exec rm {} \;
## Run 'molecule destroy'
destroy:
@if [ -x .venv_ansible$(ANSIBLE_INSTALL_VERSION)/bin/molecule ]; then \
.venv_ansible$(ANSIBLE_INSTALL_VERSION)/bin/molecule destroy; \
elif (which -s molecule); then \
echo -e "\033[0;33mWARNING: molecule not found in virtualenv - trying to use molecule in PATH\033[0m"; \
molecule destroy; \
else \
echo -e "\033[0;33mWARNING: molecule not found - either remove potential containers manually or run 'make deps' first\033[0m"; \
fi
## Login to docker container named '%'
login_%: .venv_ansible$(ANSIBLE_INSTALL_VERSION)
@echo -e "\033[0;32mINFO: Logging into $(subst login_,,$@) (ctrl-d to exit)\033[0m"
@.venv_ansible$(ANSIBLE_INSTALL_VERSION)/bin/molecule login --host $(subst login_,,$@)
## Run 'molecule test --destroy=never' (run 'make destroy' to destroy containers)
test: .venv_ansible$(ANSIBLE_INSTALL_VERSION)
@if [ "$(SCENARIO_OPT)" == "--all" ]; then \
echo "Testing all scenarios"; \
.venv_ansible$(ANSIBLE_INSTALL_VERSION)/bin/molecule test $(SCENARIO_OPT); \
else \
echo "Testing only the $(SCENARIO) scenario"; \
.venv_ansible$(ANSIBLE_INSTALL_VERSION)/bin/molecule test $(SCENARIO_OPT) --destroy=never; \
fi
# shortcut for creating venv
.venv: .venv_ansible$(ANSIBLE_INSTALL_VERSION)
## Create virtualenv, install dependencies
.venv_ansible$(ANSIBLE_INSTALL_VERSION):
virtualenv .venv_ansible$(ANSIBLE_INSTALL_VERSION)
.venv_ansible$(ANSIBLE_INSTALL_VERSION)/bin/pip install -r requirements.txt --ignore-installed
@echo -e "\033[0;32mINFO: Run 'make activate' to activate the virtualenv for this shell\033[0m"
## Run 'make test' on any file change
watch: .venv_ansible$(ANSIBLE_INSTALL_VERSION)
@while sleep 1; do \
find defaults/ files/ handlers/ meta/ molecule/*/*.yml molecule/*/test/*.py tasks/ templates/ vars/ 2> /dev/null \
| entr -d make test; \
done
## Print this help
help:
@awk -v skip=1 \
'/^##/ { sub(/^[#[:blank:]]*/, "", $$0); doc_h=$$0; doc=""; skip=0; next } \
skip { next } \
/^#/ { doc=doc "\n" substr($$0, 2); next } \
/:/ { sub(/:.*/, "", $$0); \
printf "\033[34m%-30s\033[0m\033[1m%s\033[0m %s\n\n", $$0, doc_h, doc; skip=1 }' \
$(MAKEFILE_LIST)