Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Newdigate <andrew@troupe.co>2017-06-14 11:24:20 +0300
committerAndrew Newdigate <andrew@troupe.co>2017-06-14 11:24:20 +0300
commitf7f0b7a875caa35286501ea7ebf3250aa059a0d7 (patch)
treec258519a2581be29af735c215fc82ef8c6c14f57
parentec6b79d7b1f1256b42d1eb34cbe51e8f1a34a4ae (diff)
Still diagnosing gitlab-ci issues
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index ef9030dcd..f8c6cccbf 100644
--- a/Makefile
+++ b/Makefile
@@ -10,6 +10,7 @@ export TEST_REPO_LOCATION=${TARGET_DIR}/testdata/data
TEST_REPO=${TEST_REPO_LOCATION}/gitlab-test.git
COVERAGE_DIR=${TARGET_DIR}/cover
TOOLS_DIR=${BUILD_DIR}/_tools
+allpackages = $(shell cd "${PKG_BUILD_DIR}" && ${TOOLS_DIR}/govendor list -no-status +local)
export GOPATH=${TARGET_DIR}
export GO15VENDOREXPERIMENT=1
@@ -103,13 +104,12 @@ cover: ${TARGET_DIR}/.ok ${TEST_REPO} ${TOOLS_DIR}/gocovmerge
@echo ""
@go tool cover -func "${COVERAGE_DIR}/all.merged"
+.PHONY: list
list: ${TARGET_DIR}/.ok
echo GOPATH IS ${GOPATH}
cd "${PKG_BUILD_DIR}" && ${TOOLS_DIR}/govendor list -no-status +local
@echo "ALL PACKAGES===" $(allpackages)
-allpackages = $(shell cd "${PKG_BUILD_DIR}" && ${TOOLS_DIR}/govendor list -no-status +local 2>&1)
-
.PHONY: install-developer-tools
install-developer-tools: ${TOOLS_DIR}/govendor ${TOOLS_DIR}/golint ${TOOLS_DIR}/gocovmerge