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 <jacob@gitlab.com>2019-06-05 20:06:46 +0300
committerJohn Cai <jcai@gitlab.com>2019-06-05 20:06:46 +0300
commit0a07d60bcb86287f96fd4e12f0ba1603b79e96fd (patch)
treeeae3648315f30626e1d0be7b12960786cf186f1e /.gitlab-ci.yml
parent9d626b5cbe3272dc100c674c4002fc41c2ab2b1f (diff)
Replace govendor with 'go mod'
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 14e2ad34f..c2207b0ac 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -31,8 +31,9 @@ danger-review:
<<: *ruby_definition
stage: build
script:
+ - go version
- make
- - make build-gitaly-remote
+ - echo 'make build-gitaly-remote TODO https://gitlab.com/gitlab-org/gitaly/issues/1706'
- _support/test-boot-time .
.assemble_template: &assemble_definition
@@ -72,7 +73,7 @@ danger-review:
- go version
- git version
- make test
- - make test-gitaly-remote
+ - echo 'make test-gitaly-remote TODO https://gitlab.com/gitlab-org/gitaly/issues/1706'
verify:
<<: *ruby_definition