blob: e797d509004e8702e695377351c03a1f11bc1712 [file] [log] [blame]
Zack Williams9fc21d72020-11-22 22:36:54 -07001# dhcpd 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
Zack Williams98725e22021-03-18 10:21:26 -070011test: filter_test ## run tests on the playbook with molecule
Zack Williams9fc21d72020-11-22 22:36:54 -070012 molecule --version
13 molecule test
14
Zack Williams98725e22021-03-18 10:21:26 -070015filter_test: ## test filter plugins
16 python filter_plugins/rfc3442_words.py
17
Zack Williams9fc21d72020-11-22 22:36:54 -070018lint: yamllint ansiblelint ## run all lint checks
19
20# all YAML files
21YAML_FILES ?= $(shell find . -type f \( -name '*.yaml' -o -name '*.yml' \) -print )
22
23yamllint: ## lint check with yamllint
24 yamllint --version
25 yamllint \
26 -d "{extends: default, rules: {line-length: {max: 99}}}" \
27 -s $(YAML_FILES)
28
Zack Williams7f58df02021-09-14 13:49:57 -070029# List of molecule files, not including base molecule.yml which isn't ansible format
30MOLECULE_FILES ?= $(shell find molecule -type f -name '*.yml' \! -name 'molecule.yml' -print )
31
Zack Williams9fc21d72020-11-22 22:36:54 -070032ansiblelint: ## lint check with ansible-lint
33 ansible-lint --version
34 ansible-lint -v .
Zack Williams7f58df02021-09-14 13:49:57 -070035 ansible-lint -v $(MOLECULE_FILES)
Zack Williams9fc21d72020-11-22 22:36:54 -070036
37license: ## Check license with the reuse tool
38 reuse --version
39 reuse --root . lint
40
41help: ## Print help for each target
42 @echo dhcpd test targets
43 @echo
44 @grep '^[[:alnum:]_-]*:.* ##' $(MAKEFILE_LIST) \
45 | sort | awk 'BEGIN {FS=":.* ## "}; {printf "%-25s %s\n", $$1, $$2};'