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:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2022-06-16 09:15:53 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2022-06-20 11:03:21 +0300
commit5c18e86bfd7219fa2f44d4f4bca36ac02454f6b8 (patch)
tree0be8a7b12cd6501cbcfc4d73415a99cea9d7985e
parentf89ffa3dcc4dcbcc2f2b56a9287448f4a90e76a5 (diff)
ci: Stop executing `go version` twice in nightly jobs
We're executing `go version` as part of the `before_script` already, and repeat it when executing the actual `script` in our nightly test jobs. Remove the latter one to avoid duplication.
-rw-r--r--.gitlab-ci.yml1
1 files changed, 0 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 5e4e34664..09b3dde5e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -245,7 +245,6 @@ test:pgbouncer:
test:nightly:
<<: *test_definition
script:
- - go version
- make -j$(nproc) build prepare-tests
- setpriv --reuid=${TEST_UID} --regid=${TEST_UID} --clear-groups --no-new-privs make ${TARGET} SKIP_RSPEC_BUILD=YesPlease
parallel: