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:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-01-18 23:07:37 +0300
committerÆvar Arnfjörð Bjarmason <avarab@gmail.com>2021-01-18 23:16:22 +0300
commit261db420fc3d289d9ba9c9c791e7699bb7d97cc3 (patch)
tree5fd2b5489062cea34c52daae4aca7acb03c38d8e
parent68f5621f30f75b910b6dd965beb4ffe9ac329259 (diff)
Lint: move "lint-strict" target to nightly scheduleavar/lint-strict-in-nightly
Since my 688682aa0 (Lint: add a "lint-strict" CI target, 2021-01-06) we've been showing the (!) checkmark next to all MRs instead of the green/red OK/fail checkmark. Since these strict lint failures are just something we want to keep an eye on and not really actionable for any one MR author let's move them to the nightly run accessible at https://gitlab.com/gitlab-org/gitaly/-/pipeline_schedules
-rw-r--r--.gitlab-ci.yml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index c5c358c9f..ca7d17731 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -309,6 +309,8 @@ lint-strict:
script:
- go version
- make lint-strict
+ rules:
+ - if: '$CI_PIPELINE_SOURCE == "schedule"'
objectinfo_fuzz_test:
extends: .fuzz_base