Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
3dd941ef
Commit
3dd941ef
authored
Jul 28, 2021
by
Rémy Coutable
Committed by
Mark Fletcher
Aug 17, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: Run review-qa-all for the nightly scheduled pipelines
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
718246c1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
28 additions
and
13 deletions
+28
-13
.gitlab/ci/rules.gitlab-ci.yml
.gitlab/ci/rules.gitlab-ci.yml
+28
-13
No files found.
.gitlab/ci/rules.gitlab-ci.yml
View file @
3dd941ef
...
...
@@ -19,12 +19,6 @@
.if-default-branch-push
:
&if-default-branch-push
if
:
'
$CI_COMMIT_BRANCH
==
$CI_DEFAULT_BRANCH
&&
$CI_PIPELINE_SOURCE
==
"push"'
.if-default-branch-schedule-2-hourly
:
&if-default-branch-schedule-2-hourly
if
:
'
$CI_COMMIT_BRANCH
==
$CI_DEFAULT_BRANCH
&&
$CI_PIPELINE_SOURCE
==
"schedule"
&&
$FREQUENCY
==
"2-hourly"'
.if-default-branch-schedule-nightly
:
&if-default-branch-schedule-nightly
if
:
'
$CI_COMMIT_BRANCH
==
$CI_DEFAULT_BRANCH
&&
$CI_PIPELINE_SOURCE
==
"schedule"
&&
$FREQUENCY
==
"nightly"'
.if-auto-deploy-branches
:
&if-auto-deploy-branches
if
:
'
$CI_COMMIT_BRANCH
=~
/^\d+-\d+-auto-deploy-\d+$/'
...
...
@@ -55,12 +49,30 @@
.if-security-merge-request
:
&if-security-merge-request
if
:
'
$CI_PROJECT_NAMESPACE
==
"gitlab-org/security"
&&
$CI_MERGE_REQUEST_IID'
.if-default-branch-schedule-2-hourly
:
&if-default-branch-schedule-2-hourly
if
:
'
$CI_COMMIT_BRANCH
==
$CI_DEFAULT_BRANCH
&&
$CI_PIPELINE_SOURCE
==
"schedule"
&&
$FREQUENCY
==
"2-hourly"'
.if-default-branch-schedule-nightly
:
&if-default-branch-schedule-nightly
if
:
'
$CI_COMMIT_BRANCH
==
$CI_DEFAULT_BRANCH
&&
$CI_PIPELINE_SOURCE
==
"schedule"
&&
$FREQUENCY
==
"nightly"'
.if-security-schedule
:
&if-security-schedule
if
:
'
$CI_PROJECT_NAMESPACE
==
"gitlab-org/security"
&&
$CI_PIPELINE_SOURCE
==
"schedule"'
.if-dot-com-gitlab-org-schedule
:
&if-dot-com-gitlab-org-schedule
if
:
'
$CI_SERVER_HOST
==
"gitlab.com"
&&
$CI_PROJECT_NAMESPACE
==
"gitlab-org"
&&
$CI_PIPELINE_SOURCE
==
"schedule"'
.if-dot-com-ee-schedule
:
&if-dot-com-ee-schedule
if
:
'
$CI_SERVER_HOST
==
"gitlab.com"
&&
$CI_PROJECT_PATH
==
"gitlab-org/gitlab"
&&
$CI_PIPELINE_SOURCE
==
"schedule"'
.if-dot-com-ee-2-hourly-schedule
:
&if-dot-com-ee-2-hourly-schedule
if
:
'
$CI_SERVER_HOST
==
"gitlab.com"
&&
$CI_PROJECT_PATH
==
"gitlab-org/gitlab"
&&
$CI_PIPELINE_SOURCE
==
"schedule"
&&
$FREQUENCY
==
"2-hourly"'
.if-dot-com-ee-nightly-schedule
:
&if-dot-com-ee-nightly-schedule
if
:
'
$CI_SERVER_HOST
==
"gitlab.com"
&&
$CI_PROJECT_PATH
==
"gitlab-org/gitlab"
&&
$CI_PIPELINE_SOURCE
==
"schedule"
&&
$FREQUENCY
==
"nightly"'
.if-cache-credentials-schedule
:
&if-cache-credentials-schedule
if
:
'
$CI_REPO_CACHE_CREDENTIALS
&&
$CI_PIPELINE_SOURCE
==
"schedule"'
.if-dot-com-gitlab-org-default-branch
:
&if-dot-com-gitlab-org-default-branch
if
:
'
$CI_SERVER_HOST
==
"gitlab.com"
&&
$CI_PROJECT_NAMESPACE
==
"gitlab-org"
&&
$CI_COMMIT_REF_NAME
==
$CI_DEFAULT_BRANCH'
...
...
@@ -73,11 +85,6 @@
.if-dot-com-gitlab-org-and-security-tag
:
&if-dot-com-gitlab-org-and-security-tag
if
:
'
$CI_SERVER_HOST
==
"gitlab.com"
&&
$CI_PROJECT_NAMESPACE
=~
/^gitlab-org($|\/security$)/
&&
$CI_COMMIT_TAG'
.if-dot-com-ee-2-hourly-schedule
:
&if-dot-com-ee-2-hourly-schedule
if
:
'
$CI_SERVER_HOST
==
"gitlab.com"
&&
$CI_PROJECT_PATH
==
"gitlab-org/gitlab"
&&
$CI_PIPELINE_SOURCE
==
"schedule"
&&
$FREQUENCY
==
"2-hourly"'
.if-cache-credentials-schedule
:
&if-cache-credentials-schedule
if
:
'
$CI_REPO_CACHE_CREDENTIALS
&&
$CI_PIPELINE_SOURCE
==
"schedule"'
.if-rspec-fail-fast-disabled
:
&if-rspec-fail-fast-disabled
if
:
'
$RSPEC_FAIL_FAST_ENABLED
!=
"true"'
...
...
@@ -1306,7 +1313,7 @@
-
<<
:
*if-dot-com-gitlab-org-merge-request
changes
:
*code-qa-patterns
allow_failure
:
true
-
<<
:
*if-dot-com-
gitlab-org
-schedule
-
<<
:
*if-dot-com-
ee
-schedule
allow_failure
:
true
# The rule needs to be duplicated between `on_success` and `on_failure`
...
...
@@ -1350,6 +1357,8 @@
-
<<
:
*if-dot-com-gitlab-org-merge-request
changes
:
*qa-patterns
allow_failure
:
true
-
<<
:
*if-dot-com-ee-nightly-schedule
allow_failure
:
true
# The rule needs to be duplicated between `on_success` and `on_failure`
# because the jobs `needs` the previous job to complete.
...
...
@@ -1364,12 +1373,18 @@
allow_failure
:
true
-
<<
:
*if-dot-com-gitlab-org-merge-request
changes
:
*qa-patterns
allow_failure
:
true
when
:
on_success
allow_failure
:
true
-
<<
:
*if-dot-com-gitlab-org-merge-request
changes
:
*qa-patterns
when
:
on_failure
allow_failure
:
true
-
<<
:
*if-dot-com-ee-nightly-schedule
when
:
on_success
allow_failure
:
true
-
<<
:
*if-dot-com-ee-nightly-schedule
when
:
on_failure
allow_failure
:
true
.review:rules:review-cleanup:
rules
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment