From 70af161895203fc7522b8437fb13d1194b49fdf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 28 Sep 2018 20:12:31 +0100 Subject: [PATCH 1/2] fix(build): cleanup Go vendor dir and coverage --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c2b4a65a..af47993aa 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ vendor-update: .build/deps-build-go.ok .PHONY: clean clean: - rm -fr .build bindata_assetfs.go $(NAME) ui/build ui/node_modules + rm -fr .build bindata_assetfs.go $(NAME) ui/build ui/node_modules vendor coverage.txt .PHONY: run run: $(NAME) From ae42ebeb24b9f2874d0bc21e1a24d4c99cea6b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 28 Sep 2018 20:14:16 +0100 Subject: [PATCH 2/2] fix(tests): golangci-lint depends on populated vendor folder --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index af47993aa..6b3c1e5cf 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ lint-git-ci: .build/deps-build-node.ok ui/node_modules/.bin/commitlint-travis .PHONY: lint-go -lint-go: .build/deps-lint-go.ok +lint-go: .build/deps-lint-go.ok .build/vendor.ok golangci-lint run .PHONY: lint-js