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:
authorPaul Okstad <pokstad@gitlab.com>2020-09-05 01:00:36 +0300
committerPaul Okstad <pokstad@gitlab.com>2020-09-05 01:00:36 +0300
commit8a0d83b496eaff459d55bc6825428f648059e8d9 (patch)
tree1dcce328ab876d48678480fdec41d81d30802246
parent0ca7f624457c6849465bafbd8260cbb3163026c3 (diff)
parent44e0964febbb5a61f910ce1d906a21d4b984adab (diff)
Merge branch 'pks-ci-git-master' into 'master'
Add scheduled jobs testing against Git master See merge request gitlab-org/gitaly!2513
-rw-r--r--.gitlab-ci.yml20
1 files changed, 11 insertions, 9 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index ceefd0706..058914da5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -135,19 +135,21 @@ test:
TARGET: test
- GO_VERSION: "1.14"
GIT_VERSION: "v2.27.0"
- TARGET: [ test-with-proxies, test-with-praefect ]
+ TARGET: [ test-with-proxies, test-with-praefect, race-go ]
-race:
+test:master:
<<: *test_definition
+ image: registry.gitlab.com/gitlab-org/gitlab-build-images:ruby-2.6-golang-${GO_VERSION}-git-2.28
script:
- go version
- - _build/git/bin/git version
- - make race-go
- artifacts:
- paths:
- - _build/reports/go-tests-report-${CI_JOB_NAME}.xml
- reports:
- junit: _build/reports/go-tests-report-${CI_JOB_NAME}.xml
+ - make all ${TARGET}
+ parallel:
+ matrix:
+ - GO_VERSION: "1.14"
+ GIT_VERSION: "master"
+ TARGET: [ test, test-with-proxies, test-with-praefect ]
+ rules:
+ - if: '$CI_PIPELINE_SOURCE == "schedule"'
cover:
<<: *cache_definition