From 158a56ccfaccc12db0a23ad1ebe7ec5ba1892ddc Mon Sep 17 00:00:00 2001 From: Angus Lees <gus@inodes.org> Date: Tue, 27 Jun 2017 17:00:14 +1000 Subject: [PATCH] Syntax-check guestbook.jsonnet during "make test" --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 48969bc1..2e33b0a1 100644 --- a/Makefile +++ b/Makefile @@ -4,6 +4,7 @@ GO = go GO_FLAGS = -ldflags="-X main.version=$(VERSION) $(GO_LDFLAGS)" GOFMT = gofmt +JSONNET_FILES = lib/kubecfg_test.jsonnet examples/guestbook.jsonnet # TODO: Simplify this once ./... ignores ./vendor GO_PACKAGES = ./cmd/... ./utils/... @@ -17,8 +18,9 @@ test: gotest jsonnettest gotest: $(GO) test $(GO_FLAGS) $(GO_PACKAGES) -jsonnettest: kubecfg lib/kubecfg_test.jsonnet - ./kubecfg -J lib show lib/kubecfg_test.jsonnet +jsonnettest: kubecfg $(JSONNET_FILES) +# TODO: use `kubecfg check` once implemented + ./kubecfg -J lib show $(JSONNET_FILES) >/dev/null vet: $(GO) vet $(GO_FLAGS) $(GO_PACKAGES) -- GitLab