Skip to content
Snippets Groups Projects
Unverified Commit 3a74fcd7 authored by leigh capili's avatar leigh capili
Browse files

Add Makefile to test integrations


Signed-off-by: default avatarleigh capili <leigh@null.net>
parent 7265276c
No related branches found
No related tags found
No related merge requests found
bases := $(shell dirname $(shell find | grep kustomization.yaml | sort))
all: $(bases)
permutations := $(bases) $(addsuffix /,$(bases))
.PHONY: $(permutations)
$(permutations):
@echo $@
@warnings=$$(kustomize build $@ -o /dev/null 2>&1); \
if [ "$$warnings" ]; then \
echo "$$warnings"; \
false; \
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment