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:
authorJacob Vosmaer (GitLab) <jacob@gitlab.com>2018-04-19 12:56:15 +0300
committerZeger-Jan van de Weg <zegerjan@gitlab.com>2018-04-19 12:56:15 +0300
commit30ebd9f34fe5c882a00dbe410bc38108f94f789c (patch)
tree5230e625f16f33d776b3738790d551b3123fdddc /Makefile
parenteb994c8362ab0d31d40c99e8678130f246246df7 (diff)
Use gitaly-proto 0.97.0
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9570bd5b1..fb8170a31 100644
--- a/Makefile
+++ b/Makefile
@@ -102,12 +102,16 @@ docker: $(TARGET_SETUP)
docker build -t gitlab/gitaly:$(VERSION_PREFIXED) -t gitlab/gitaly:latest $(TARGET_DIR)/docker/
.PHONY: verify
-verify: lint check-formatting megacheck govendor-status notice-up-to-date
+verify: lint check-formatting megacheck govendor-status notice-up-to-date govendor-tagged
.PHONY: govendor-status
govendor-status: $(TARGET_SETUP) $(GOVENDOR)
cd $(PKG_BUILD_DIR) && govendor status
+.PHONY: govendor-tagged
+govendor-tagged: $(TARGET_SETUP) $(GOVENDOR)
+ cd $(PKG_BUILD_DIR) && _support/gitaly-proto-tagged
+
$(TEST_REPO):
git clone --bare https://gitlab.com/gitlab-org/gitlab-test.git $@