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
7c862041
Commit
7c862041
authored
Oct 10, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add latest changes from gitlab-org/gitlab@master
parent
d96abbee
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
47 additions
and
27 deletions
+47
-27
.dockerignore
.dockerignore
+1
-1
.gitlab/ci/frontend.gitlab-ci.yml
.gitlab/ci/frontend.gitlab-ci.yml
+0
-23
.gitlab/ci/qa.gitlab-ci.yml
.gitlab/ci/qa.gitlab-ci.yml
+34
-0
doc/development/pipelines.md
doc/development/pipelines.md
+10
-3
qa/Dockerfile
qa/Dockerfile
+1
-0
qa/qa.rb
qa/qa.rb
+1
-0
No files found.
.dockerignore
View file @
7c862041
...
...
@@ -6,6 +6,7 @@
# - ./config/initializers/0_inject_enterprise_edition_module.rb
# - ./ee/app/models/license.rb
# - ./lib/gitlab.rb
# - ./lib/gitlab/utils.rb
# - ./qa/
# - ./INSTALLATION_TYPE
# - ./VERSION
...
...
@@ -49,7 +50,6 @@
/lib/flowdock/
/lib/generators/
/lib/gitaly/
/lib/gitlab/
/lib/api/
/lib/token/
/lib/mattermost/
...
...
.gitlab/ci/frontend.gitlab-ci.yml
View file @
7c862041
...
...
@@ -188,29 +188,6 @@ jest-foss:
cache
:
policy
:
pull
.qa-job-base
:
extends
:
-
.default-tags
-
.default-retry
-
.default-cache
-
.default-only
-
.only-code-qa-changes
dependencies
:
[]
stage
:
test
before_script
:
-
cd qa/
-
bundle install
qa:internal:
extends
:
.qa-job-base
script
:
-
bundle exec rspec
qa:selectors:
extends
:
.qa-job-base
script
:
-
bundle exec bin/qa Test::Sanity::Selectors
.qa-frontend-node
:
extends
:
-
.default-tags
...
...
.gitlab/ci/qa.gitlab-ci.yml
View file @
7c862041
.qa-job-base
:
extends
:
-
.default-tags
-
.default-retry
-
.default-only
-
.only-code-qa-changes
stage
:
test
dependencies
:
[]
# It's currently impossible to specify `needs: []` so we depend on `build-qa-image` which also has `.only-code-qa-changes`
needs
:
[
"
build-qa-image"
]
cache
:
key
:
"
qa-framework-jobs:v1"
paths
:
-
vendor/ruby
before_script
:
-
cd qa/
-
bundle install --clean --jobs=$(nproc) --path=vendor --retry=3 --quiet
-
bundle check
qa:internal:
extends
:
.qa-job-base
script
:
-
bundle exec rspec
qa:selectors:
extends
:
.qa-job-base
script
:
-
bundle exec bin/qa Test::Sanity::Selectors
qa:selectors-foss:
extends
:
-
qa:selectors
-
.only-ee-as-if-foss
.package-and-qa-base
:
extends
:
.default-only
image
:
ruby:2.6-alpine
...
...
doc/development/pipelines.md
View file @
7c862041
...
...
@@ -62,7 +62,6 @@ each pipeline includes the following [variables](../ci/variables/README.md):
-
`GIT_SUBMODULE_STRATEGY: "none"`
-
`GET_SOURCES_ATTEMPTS: "3"`
-
`KNAPSACK_RSPEC_SUITE_REPORT_PATH: knapsack/${CI_PROJECT_NAME}/rspec_report-master.json`
-
`EE_KNAPSACK_RSPEC_SUITE_REPORT_PATH: knapsack/${CI_PROJECT_NAME}/rspec_report-master-ee.json`
-
`FLAKY_RSPEC_SUITE_REPORT_PATH: rspec_flaky/report-suite.json`
-
`BUILD_ASSETS_IMAGE: "false"`
-
`ES_JAVA_OPTS: "-Xms256m -Xmx256m"`
...
...
@@ -93,9 +92,17 @@ These common definitions are:
for
`master`
and auto-deploy branches.
-
`.only-review-schedules`
: Same as
`.only-review`
but also restrict a job to
only run for
[
schedules
](
../user/project/pipelines/schedules.md
)
.
-
`.use-pg`
: Allows a job to use the
`postgres:9.6.14`
and
`redis:alpine`
services.
-
`.use-pg-10`
: Allows a job to use the
`postgres:10.9`
and
`redis:alpine`
services.
-
`.only-canonical-schedules`
: Only creates a job for scheduled pipelines in
the
`gitlab-org/gitlab`
and
`gitlab-org/gitlab-foss`
projects
-
`.use-pg9`
: Allows a job to use the
`postgres:9.6`
and
`redis:alpine`
services.
-
`.use-pg10`
: Allows a job to use the
`postgres:10.9`
and
`redis:alpine`
services.
-
`.use-pg9-ee`
: Same as
`.use-pg9`
but also use the
`docker.elastic.co/elasticsearch/elasticsearch:5.6.12`
services.
-
`.use-pg10-ee`
: Same as
`.use-pg10`
but also use the
`docker.elastic.co/elasticsearch/elasticsearch:5.6.12`
services.
-
`.only-ee`
: Only creates a job for the
`gitlab`
project.
-
`.only-ee-as-if-foss`
: Same as
`.only-ee`
but simulate the FOSS project by
setting the
`IS_GITLAB_EE='0'`
environment variable.
## Changes detection
...
...
qa/Dockerfile
View file @
7c862041
...
...
@@ -54,6 +54,7 @@ COPY ./config/initializers/0_inject_enterprise_edition_module.rb /home/gitlab/co
# The [b] part makes ./ee/app/models/license.r[b] a pattern that is allowed to return no files (which is the case in FOSS)
COPY
VERSION ./ee/app/models/license.r[b] /home/gitlab/ee/app/models/
COPY
./lib/gitlab.rb /home/gitlab/lib/
COPY
./lib/gitlab/utils.rb /home/gitlab/lib/gitlab/
COPY
./INSTALLATION_TYPE ./VERSION /home/gitlab/
RUN
cd
/home/gitlab/qa/
&&
bundle
install
--jobs
=
$(
nproc
)
--retry
=
3
--quiet
COPY
./qa /home/gitlab/qa
...
...
qa/qa.rb
View file @
7c862041
...
...
@@ -5,6 +5,7 @@ $: << File.expand_path(File.dirname(__FILE__))
Encoding
.
default_external
=
'UTF-8'
require_relative
'../lib/gitlab'
require_relative
'../lib/gitlab/utils'
require_relative
'../config/initializers/0_inject_enterprise_edition_module'
module
QA
...
...
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