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:
authorJames Fargher <jfargher@gitlab.com>2021-12-01 06:05:34 +0300
committerJames Fargher <jfargher@gitlab.com>2021-12-01 23:50:56 +0300
commit4532ef9766313678d7aed6f158ce46878a1ea203 (patch)
treebe1c99b97848738eca1f6154efcdf14c9bd52cff /.gitlab-ci.yml
parent6ade1aa5b8a794f865ddba1128a86192dc3562cd (diff)
Fix go test report filename
In the Makefile, GIT_VERSION is overwritten when it is default. This makes the junit filename no longer match what is specified in gitlab-ci.yml. Instead here we are simplifying down to a static filename. There shouldn't be any risk of the report being overwritten since CI runs each permutation of the test matrix in separate containers.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 50bbd235b..f9f4f0cf1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -57,7 +57,7 @@ include:
paths:
- ruby/tmp/gitaly-rspec-test.log
reports:
- junit: _build/reports/go-tests-report-go-${GO_VERSION}-git-${GIT_VERSION}.xml
+ junit: _build/reports/go-tests-report.xml
when: on_failure
expire_in: 1 week