Zack Williams | 2e9da86 | 2020-07-13 21:39:21 -0700 | [diff] [blame] | 1 | # redis Makefile |
| 2 | # |
| 3 | # SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> |
| 4 | # SPDX-License-Identifier: Apache-2.0 |
| 5 | |
| 6 | SHELL = bash -eu -o pipefail |
| 7 | |
| 8 | .DEFAULT_GOAL := help |
| 9 | .PHONY: test lint yamllint ansiblelint license help |
| 10 | |
| 11 | test: ## run tests on the playbook with molecule |
| 12 | molecule --version |
| 13 | molecule test |
| 14 | |
| 15 | lint: yamllint ansiblelint ## run all lint checks |
| 16 | |
| 17 | # all YAML files |
| 18 | YAML_FILES ?= $(shell find . -type f \( -name '*.yaml' -o -name '*.yml' \) -print ) |
| 19 | |
| 20 | yamllint: ## lint check with yamllint |
| 21 | yamllint --version |
| 22 | yamllint \ |
| 23 | -d "{extends: default, rules: {line-length: {max: 99}}}" \ |
| 24 | -s $(YAML_FILES) |
| 25 | |
Wei-Yu Chen | 8c57b87 | 2022-04-11 21:41:27 +0800 | [diff] [blame] | 26 | # List of molecule files, not including base molecule.yml which isn't ansible format |
| 27 | MOLECULE_FILES ?= $(shell find molecule -type f -name '*.yml' \! -name 'molecule.yml' -print ) |
| 28 | |
Zack Williams | 2e9da86 | 2020-07-13 21:39:21 -0700 | [diff] [blame] | 29 | ansiblelint: ## lint check with ansible-lint |
| 30 | ansible-lint --version |
| 31 | ansible-lint -v . |
Wei-Yu Chen | 8c57b87 | 2022-04-11 21:41:27 +0800 | [diff] [blame] | 32 | ansible-lint -v $(MOLECULE_FILES) |
Zack Williams | 2e9da86 | 2020-07-13 21:39:21 -0700 | [diff] [blame] | 33 | |
| 34 | license: ## Check license with the reuse tool |
| 35 | reuse --version |
| 36 | reuse --root . lint |
| 37 | |
| 38 | help: ## Print help for each target |
| 39 | @echo redis test targets |
| 40 | @echo |
| 41 | @grep '^[[:alnum:]_-]*:.* ##' $(MAKEFILE_LIST) \ |
| 42 | | sort | awk 'BEGIN {FS=":.* ## "}; {printf "%-25s %s\n", $$1, $$2};' |