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
12e37506
Commit
12e37506
authored
Feb 10, 2020
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use 'rules' in '.gitlab/ci/setup.gitlab-ci.yml'
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
74cc831c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
97 additions
and
17 deletions
+97
-17
.gitlab/ci/setup.gitlab-ci.yml
.gitlab/ci/setup.gitlab-ci.yml
+97
-17
No files found.
.gitlab/ci/setup.gitlab-ci.yml
View file @
12e37506
# Make sure to update all the similar conditions in other CI config files if you modify these conditions
.if-not-canonical-namespace
:
&if-not-canonical-namespace
if
:
'
$CI_PROJECT_NAMESPACE
!~
/^gitlab(-org)?($|\/)/'
# Make sure to update all the similar conditions in other CI config files if you modify these conditions
.if-not-foss
:
&if-not-foss
if
:
'
$CI_PROJECT_NAME
!=
"gitlab-foss"
&&
$CI_PROJECT_NAME
!=
"gitlab-ce"
&&
$CI_PROJECT_NAME
!=
"gitlabhq"'
# Make sure to update all the similar conditions in other CI config files if you modify these conditions
.if-master-or-tag
:
&if-master-or-tag
if
:
'
$CI_COMMIT_REF_NAME
==
"master"
||
$CI_COMMIT_TAG'
# Make sure to update all the similar conditions in other CI config files if you modify these conditions
.if-default-refs
:
&if-default-refs
if
:
'
$CI_COMMIT_REF_NAME
==
"master"
||
$CI_COMMIT_REF_NAME
=~
/^[\d-]+-stable(-ee)?$/
||
$CI_COMMIT_REF_NAME
=~
/^\d+-\d+-auto-deploy-\d+$/
||
$CI_COMMIT_REF_NAME
=~
/^security\//
||
$CI_MERGE_REQUEST_IID
||
$CI_COMMIT_TAG'
# Make sure to update all the similar patterns in other CI config files if you modify these patterns
.code-backstage-patterns
:
&code-backstage-patterns
-
"
.gitlab/ci/**/*"
-
"
.{eslintignore,gitattributes,nvmrc,prettierrc,stylelintrc,yamllint}"
-
"
.{codeclimate,eslintrc,gitlab-ci,haml-lint,haml-lint_todo,rubocop,rubocop_todo,scss-lint}.yml"
-
"
.csscomb.json"
-
"
Dockerfile.assets"
-
"
*_VERSION"
-
"
Gemfile{,.lock}"
-
"
Rakefile"
-
"
{babel.config,jest.config}.js"
-
"
config.ru"
-
"
{package.json,yarn.lock}"
-
"
{,ee/}{app,bin,config,db,haml_lint,lib,locale,public,scripts,symbol,vendor}/**/*"
-
"
doc/api/graphql/reference/*"
# Files in this folder are auto-generated
# Backstage changes
-
"
Dangerfile"
-
"
danger/**/*"
-
"
{,ee/}fixtures/**/*"
-
"
{,ee/}rubocop/**/*"
-
"
{,ee/}spec/**/*"
-
"
doc/README.md"
# Some RSpec test rely on this file
# Make sure to update all the similar patterns in other CI config files if you modify these patterns
.code-backstage-qa-patterns
:
&code-backstage-qa-patterns
-
"
.gitlab/ci/**/*"
-
"
.{eslintignore,gitattributes,nvmrc,prettierrc,stylelintrc,yamllint}"
-
"
.{codeclimate,eslintrc,gitlab-ci,haml-lint,haml-lint_todo,rubocop,rubocop_todo,scss-lint}.yml"
-
"
.csscomb.json"
-
"
Dockerfile.assets"
-
"
*_VERSION"
-
"
Gemfile{,.lock}"
-
"
Rakefile"
-
"
{babel.config,jest.config}.js"
-
"
config.ru"
-
"
{package.json,yarn.lock}"
-
"
{,ee/}{app,bin,config,db,haml_lint,lib,locale,public,scripts,symbol,vendor}/**/*"
-
"
doc/api/graphql/reference/*"
# Files in this folder are auto-generated
# Backstage changes
-
"
Dangerfile"
-
"
danger/**/*"
-
"
{,ee/}fixtures/**/*"
-
"
{,ee/}rubocop/**/*"
-
"
{,ee/}spec/**/*"
-
"
doc/README.md"
# Some RSpec test rely on this file
# QA changes
-
"
.dockerignore"
-
"
qa/**/*"
.setup:rules:cache-gems:
rules
:
-
<<
:
*if-not-canonical-namespace
when
:
never
-
<<
:
*if-master-or-tag
changes
:
*code-backstage-qa-patterns
when
:
on_success
.setup:rules:gitlab_git_test:
rules
:
-
<<
:
*if-default-refs
changes
:
*code-backstage-patterns
when
:
on_success
.setup:rules:no_ee_check:
rules
:
-
<<
:
*if-not-foss
when
:
never
-
<<
:
*if-default-refs
changes
:
*code-backstage-patterns
when
:
on_success
# Insurance in case a gem needed by one of our releases gets yanked from
# rubygems.org in the future.
cache gems
:
...
...
@@ -6,11 +93,11 @@ cache gems:
-
.default-retry
-
.default-cache
-
.default-before_script
-
.only:variables-canonical-dot-com
-
.only:changes-code-backstage-qa
-
.setup:rules:cache-gems
stage
:
test
dependencies
:
[
"
setup-test-env"
]
needs
:
[
"
setup-test-env"
]
needs
:
-
job
:
setup-test-env
artifacts
:
true
variables
:
SETUP_DB
:
"
false"
script
:
...
...
@@ -18,30 +105,23 @@ cache gems:
artifacts
:
paths
:
-
vendor/cache
only
:
refs
:
-
master
-
tags
.minimal-job
:
extends
:
-
.default-tags
-
.default-retry
-
.default-only
-
.only:changes-code-backstage
dependencies
:
[]
gitlab_git_test
:
extends
:
.minimal-job
extends
:
-
.minimal-job
-
.setup:rules:gitlab_git_test
script
:
-
spec/support/prepare-gitlab-git-test-for-commit --check-for-changes
no_ee_check
:
extends
:
.minimal-job
extends
:
-
.minimal-job
-
.setup:rules:no_ee_check
script
:
-
scripts/no-ee-check
only
:
variables
:
-
$CI_PROJECT_NAME == "gitlab-foss"
-
$CI_PROJECT_NAME == "gitlab-ce"
# Support former project name for forks/mirrors
-
$CI_PROJECT_NAME == "gitlabhq"
# Support former project name for dev
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