blob: c2182d62becdc48c3eea4be91c2f463a870b8f6f [file] [log] [blame]
Zack Williams5b5d9a72020-11-06 13:59:06 -07001# pxeboot Makefile
2#
3# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org>
4# SPDX-License-Identifier: Apache-2.0
5
6SHELL = bash -eu -o pipefail
7
8.DEFAULT_GOAL := help
9.PHONY: test lint yamllint ansiblelint license help
10
11test: ## run tests on the playbook with molecule
12 molecule --version
13 molecule test
14
15lint: yamllint ansiblelint ## run all lint checks
16
17# all YAML files
18YAML_FILES ?= $(shell find . -type f \( -name '*.yaml' -o -name '*.yml' \) -print )
19
20yamllint: ## lint check with yamllint
21 yamllint --version
22 yamllint \
23 -d "{extends: default, rules: {line-length: {max: 119}}}" \
24 -s $(YAML_FILES)
25
26ansiblelint: ## lint check with ansible-lint
27 ansible-lint --version
28 ansible-lint -v .
29 ansible-lint -v molecule/*/*
30
31license: ## Check license with the reuse tool
32 reuse --version
33 reuse --root . lint
34
35help: ## Print help for each target
36 @echo pxeboot test targets
37 @echo
38 @grep '^[[:alnum:]_-]*:.* ##' $(MAKEFILE_LIST) \
39 | sort | awk 'BEGIN {FS=":.* ## "}; {printf "%-25s %s\n", $$1, $$2};'