blob: c4d8e942a79d58f6bf637761ebb8d5bb8917f083 [file] [log] [blame]
# {{ cookiecutter.role_name }} Makefile
#
# SPDX-FileCopyrightText: {{ cookiecutter.year }} {{ cookiecutter.author }} <{{ cookiecutter.email }}>
# SPDX-License-Identifier: {{ cookiecutter.license }}
SHELL = bash -eu -o pipefail
.DEFAULT_GOAL := help
.PHONY: test lint yamllint ansiblelint license help
test: ## run tests on the playbook with molecule
molecule --version
molecule test
lint: license yamllint ansiblelint ## run all lint checks
# all YAML files
YAML_FILES ?= $(shell find . -type f \( -name '*.yaml' -o -name '*.yml' \) -print )
license: ## Check license with the reuse tool
reuse --version
reuse --root . lint
yamllint: ## lint check with yamllint
yamllint --version
yamllint \
-d "{extends: default, rules: {line-length: {max: 99}}}" \
-s $(YAML_FILES)
# List of molecule files, not including base molecule.yml which isn't ansible format
MOLECULE_FILES ?= $(shell find molecule -type f -name '*.yml' \! -name 'molecule.yml' -print )
ansiblelint: ## lint check with ansible-lint
ansible-lint --version
ansible-lint -v .
ansible-lint -v $(MOLECULE_FILES)
help: ## Print help for each target
@echo {{ cookiecutter.role_name }} test targets
@echo
@grep '^[[:alnum:]_-]*:.* ##' $(MAKEFILE_LIST) \
| sort | awk 'BEGIN {FS=":.* ## "}; {printf "%-25s %s\n", $$1, $$2};'