2020-03-13 15:44:24 +05:30
.rails-job-base :
2019-12-04 20:38:33 +05:30
extends :
- .default-retry
- .default-before_script
2020-05-24 23:13:21 +05:30
- .rails-cache
2019-12-04 20:38:33 +05:30
2020-05-24 23:13:21 +05:30
#######################################################
# EE/FOSS: default refs (MRs, master, schedules) jobs #
setup-test-env :
2019-12-21 20:55:43 +05:30
extends :
2020-03-13 15:44:24 +05:30
- .rails-job-base
2020-05-24 23:13:21 +05:30
- .rails:rules:default-refs-code-backstage-qa
- .use-pg11
2019-12-21 20:55:43 +05:30
stage : prepare
2020-05-24 23:13:21 +05:30
variables :
GITLAB_TEST_EAGER_LOAD : "0"
2019-12-21 20:55:43 +05:30
script :
2020-05-24 23:13:21 +05:30
- run_timed_command "bundle exec ruby -I. -e 'require \"config/environment\"; TestEnv.init'"
- run_timed_command "scripts/gitaly-test-build" # Do not use 'bundle exec' here
- rm tmp/tests/gitaly/.ruby-bundle # This file prevents gems from being installed even if vendor/gitaly-ruby is missing
2019-12-21 20:55:43 +05:30
artifacts :
expire_in : 7d
paths :
- config/secrets.yml
2020-05-24 23:13:21 +05:30
- tmp/tests/gitaly
- tmp/tests/gitlab-elasticsearch-indexer
- tmp/tests/gitlab-shell
- tmp/tests/gitlab-test-fork
- tmp/tests/gitlab-test-fork_bare
- tmp/tests/gitlab-test
- tmp/tests/gitlab-workhorse
- tmp/tests/repositories
- tmp/tests/second_storage
when : always
2020-06-23 00:09:42 +05:30
update-rails-cache :
extends :
- setup-test-env
- .shared:rules:update-cache
artifacts : {} # This job's purpose is only to update the cache.
cache :
policy : push # We want to rebuild the cache from scratch to ensure stale dependencies are cleaned up.
.static-analysis-base :
extends :
- .default-retry
- .default-before_script
- .static-analysis-cache
needs : [ ]
variables :
SETUP_DB : "false"
ENABLE_SPRING : "1"
update-static-analysis-cache :
extends :
- .static-analysis-base
- .shared:rules:update-cache
stage : prepare
script :
- rm -rf ./node_modules # We remove node_modules because there's no mechanism to remove stall entries.
- run_timed_command "retry yarn install --frozen-lockfile"
- bundle exec rubocop --parallel # For the moment we only cache `vendor/ruby/`, `node_modules/`, and `tmp/rubocop_cache` so we don't need to run all the tasks,
2019-12-21 20:55:43 +05:30
cache :
2020-06-23 00:09:42 +05:30
# We want to rebuild the cache from scratch to ensure stale dependencies are cleaned up but RuboCop has a mechanism
# for keeping only the N latest cache files, so we take advantage of it with `pull-push` and removing `node_modules` at the start of the job.
2019-12-21 20:55:43 +05:30
policy : pull-push
2020-03-13 15:44:24 +05:30
static-analysis :
extends :
2020-06-23 00:09:42 +05:30
- .static-analysis-base
2020-03-13 15:44:24 +05:30
- .rails:rules:default-refs-code-backstage-qa
stage : test
2020-06-23 00:09:42 +05:30
parallel : 4
2020-03-13 15:44:24 +05:30
script :
2020-06-23 00:09:42 +05:30
- run_timed_command "retry yarn install --frozen-lockfile"
2020-03-13 15:44:24 +05:30
- scripts/static-analysis
downtime_check :
extends :
- .rails-job-base
- .rails:rules:downtime_check
2020-06-23 00:09:42 +05:30
needs : [ ]
2020-03-13 15:44:24 +05:30
stage : test
variables :
SETUP_DB : "false"
script :
- bundle exec rake downtime_check
2019-12-04 20:38:33 +05:30
.rspec-base :
2020-03-13 15:44:24 +05:30
extends : .rails-job-base
2019-07-31 22:56:46 +05:30
stage : test
2020-06-23 00:09:42 +05:30
needs : [ "setup-test-env" , "retrieve-tests-metadata" , "compile-test-assets" ]
2019-07-31 22:56:46 +05:30
script :
2020-05-24 23:13:21 +05:30
- run_timed_command "scripts/gitaly-test-build"
- run_timed_command "scripts/gitaly-test-spawn"
2019-12-21 20:55:43 +05:30
- source scripts/rspec_helpers.sh
2020-03-13 15:44:24 +05:30
- rspec_paralellized_job "--tag ~quarantine --tag ~geo --tag ~level:migration"
2019-07-31 22:56:46 +05:30
artifacts :
expire_in : 31d
when : always
paths :
- coverage/
- knapsack/
- rspec_flaky/
- rspec_profiling/
- tmp/capybara/
2019-09-30 21:07:59 +05:30
- tmp/memory_test/
2020-05-24 23:13:21 +05:30
- log/*.log
2019-10-12 21:52:04 +05:30
reports :
junit : junit_rspec.xml
2019-07-31 22:56:46 +05:30
2020-04-22 19:07:51 +05:30
.rspec-base-pg11 :
2019-12-04 20:38:33 +05:30
extends :
2020-03-13 15:44:24 +05:30
- .rspec-base
- .rails:rules:ee-and-foss
2020-04-22 19:07:51 +05:30
- .use-pg11
2019-07-31 22:56:46 +05:30
2020-03-13 15:44:24 +05:30
.rspec-base-migration :
script :
2020-05-24 23:13:21 +05:30
- run_timed_command "scripts/gitaly-test-build"
- run_timed_command "scripts/gitaly-test-spawn"
2020-03-13 15:44:24 +05:30
- source scripts/rspec_helpers.sh
- rspec_paralellized_job "--tag ~quarantine --tag ~geo --tag level:migration"
2019-12-21 20:55:43 +05:30
2020-04-22 19:07:51 +05:30
rspec migration pg11 :
2020-03-13 15:44:24 +05:30
extends :
2020-04-22 19:07:51 +05:30
- .rspec-base-pg11
2020-03-13 15:44:24 +05:30
- .rspec-base-migration
parallel : 5
2019-12-26 22:10:19 +05:30
2020-04-22 19:07:51 +05:30
rspec unit pg11 :
extends : .rspec-base-pg11
2019-12-21 20:55:43 +05:30
parallel : 20
2019-07-31 22:56:46 +05:30
2020-04-22 19:07:51 +05:30
rspec integration pg11 :
extends : .rspec-base-pg11
2020-03-13 15:44:24 +05:30
parallel : 8
2019-09-04 21:01:54 +05:30
2020-04-22 19:07:51 +05:30
rspec system pg11 :
extends : .rspec-base-pg11
2019-09-04 21:01:54 +05:30
parallel : 24
2019-12-21 20:55:43 +05:30
rspec fast_spec_helper :
2020-04-22 19:07:51 +05:30
extends : .rspec-base-pg11
2019-12-21 20:55:43 +05:30
script :
- bin/rspec spec/fast_spec_helper.rb
2019-12-04 20:38:33 +05:30
.db-job-base :
extends :
2020-03-13 15:44:24 +05:30
- .rails-job-base
- .rails:rules:ee-and-foss
2020-04-22 19:07:51 +05:30
- .use-pg11
2019-12-04 20:38:33 +05:30
stage : test
2020-05-24 23:13:21 +05:30
needs : [ "setup-test-env" ]
2019-12-04 20:38:33 +05:30
db:migrate:reset :
extends : .db-job-base
script :
- bundle exec rake db:migrate:reset
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
db:check-schema :
2020-05-24 23:13:21 +05:30
extends :
- .db-job-base
- .rails:rules:ee-mr-and-master-only
2019-07-31 22:56:46 +05:30
script :
- source scripts/schema_changed.sh
2020-05-24 23:13:21 +05:30
db:migrate-from-v12.10.0 :
2019-12-04 20:38:33 +05:30
extends : .db-job-base
variables :
SETUP_DB : "false"
script :
2020-05-24 23:13:21 +05:30
- export PROJECT_TO_CHECKOUT="gitlab"
- export TAG_TO_CHECKOUT="v12.10.0-ee"
- '[[ -d "ee/" ]] || export PROJECT_TO_CHECKOUT="gitlab-foss"'
- '[[ -d "ee/" ]] || export TAG_TO_CHECKOUT="v12.10.0"'
2019-12-04 20:38:33 +05:30
- git fetch https://gitlab.com/gitlab-org/$PROJECT_TO_CHECKOUT.git $TAG_TO_CHECKOUT
- git checkout -f FETCH_HEAD
- bundle update google-protobuf grpc bootsnap
- bundle install $BUNDLE_INSTALL_FLAGS
- date
- cp config/gitlab.yml.example config/gitlab.yml
2020-05-24 23:13:21 +05:30
- bundle exec rake db:drop db:create db:structure:load db:seed_fu
2019-12-04 20:38:33 +05:30
- date
- git checkout -f $CI_COMMIT_SHA
- bundle install $BUNDLE_INSTALL_FLAGS
- date
- . scripts/prepare_build.sh
- date
- bundle exec rake db:migrate
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
db:rollback :
extends : .db-job-base
2019-07-31 22:56:46 +05:30
script :
2020-06-23 00:09:42 +05:30
- bundle exec rake db:migrate VERSION=20181228175414
2019-09-30 21:07:59 +05:30
- bundle exec rake db:migrate SKIP_SCHEMA_VERSION_CHECK=true
2019-07-31 22:56:46 +05:30
2019-12-04 20:38:33 +05:30
gitlab:setup :
extends : .db-job-base
variables :
SETUP_DB : "false"
script :
# Manually clone gitlab-test and only seed this project in
# db/fixtures/development/04_project.rb thanks to SIZE=1 below
- git clone https://gitlab.com/gitlab-org/gitlab-test.git
/home/git/repositories/gitlab-org/gitlab-test.git
2020-05-24 23:13:21 +05:30
- run_timed_command "scripts/gitaly-test-build"
- run_timed_command "scripts/gitaly-test-spawn"
2019-12-04 20:38:33 +05:30
- force=yes SIZE=1 FIXTURE_PATH="db/fixtures/development" bundle exec rake gitlab:setup
artifacts :
when : on_failure
expire_in : 1d
paths :
2020-05-24 23:13:21 +05:30
- log/*.log
2019-07-31 22:56:46 +05:30
2020-04-08 14:13:33 +05:30
rspec:coverage :
2020-03-13 15:44:24 +05:30
extends :
- .rails-job-base
2020-05-24 23:13:21 +05:30
- .rails:rules:ee-mr-and-master-only
2020-03-13 15:44:24 +05:30
stage : post-test
2020-04-22 19:07:51 +05:30
# We cannot use needs since it would mean needing 84 jobs (since most are parallelized)
# so we use `dependencies` here.
dependencies :
2020-05-24 23:13:21 +05:30
- setup-test-env
2020-04-22 19:07:51 +05:30
- rspec migration pg11
- rspec unit pg11
- rspec integration pg11
- rspec system pg11
- rspec-ee migration pg11
- rspec-ee unit pg11
- rspec-ee integration pg11
- rspec-ee system pg11
- rspec-ee unit pg11 geo
- rspec-ee integration pg11 geo
- rspec-ee system pg11 geo
- memory-static
- memory-on-boot
2019-07-31 22:56:46 +05:30
variables :
SETUP_DB : "false"
script :
- bundle exec scripts/merge-simplecov
2019-09-30 21:07:59 +05:30
- bundle exec scripts/gather-test-memory-data
2019-07-31 22:56:46 +05:30
coverage : '/LOC \((\d+\.\d+%)\) covered.$/'
artifacts :
name : coverage
expire_in : 31d
paths :
2019-09-04 21:01:54 +05:30
- coverage/index.html
- coverage/assets/
2019-09-30 21:07:59 +05:30
- tmp/memory_test/
2020-05-24 23:13:21 +05:30
# EE/FOSS: default refs (MRs, master, schedules) jobs #
#######################################################
2020-03-13 15:44:24 +05:30
2020-05-24 23:13:21 +05:30
##################################################
# EE: default refs (MRs, master, schedules) jobs #
2020-03-13 15:44:24 +05:30
.rspec-base-ee :
extends :
- .rspec-base
- .rails:rules:ee-only
2020-04-22 19:07:51 +05:30
.rspec-base-pg11-as-if-foss :
2020-03-13 15:44:24 +05:30
extends :
2020-05-24 23:13:21 +05:30
- .rspec-base
- .rails:rules:as-if-foss
2020-03-13 15:44:24 +05:30
- .as-if-foss
2020-04-22 19:07:51 +05:30
- .use-pg11
2020-06-23 00:09:42 +05:30
needs : [ "setup-test-env" , "retrieve-tests-metadata" , "compile-test-assets as-if-foss" ]
2020-03-13 15:44:24 +05:30
2020-04-22 19:07:51 +05:30
.rspec-ee-base-pg11 :
2020-03-13 15:44:24 +05:30
extends :
- .rspec-base-ee
2020-04-22 19:07:51 +05:30
- .use-pg11-ee
2020-03-13 15:44:24 +05:30
2020-04-22 19:07:51 +05:30
rspec migration pg11-as-if-foss :
2020-03-13 15:44:24 +05:30
extends :
2020-04-22 19:07:51 +05:30
- .rspec-base-pg11-as-if-foss
2020-03-13 15:44:24 +05:30
- .rspec-base-migration
parallel : 5
2020-04-22 19:07:51 +05:30
rspec unit pg11-as-if-foss :
extends : .rspec-base-pg11-as-if-foss
2020-03-13 15:44:24 +05:30
parallel : 20
2020-04-22 19:07:51 +05:30
rspec integration pg11-as-if-foss :
extends : .rspec-base-pg11-as-if-foss
2020-03-13 15:44:24 +05:30
parallel : 8
2020-04-22 19:07:51 +05:30
rspec system pg11-as-if-foss :
extends : .rspec-base-pg11-as-if-foss
2020-03-13 15:44:24 +05:30
parallel : 24
2020-04-22 19:07:51 +05:30
rspec-ee migration pg11 :
2020-03-13 15:44:24 +05:30
extends :
2020-04-22 19:07:51 +05:30
- .rspec-ee-base-pg11
2020-03-13 15:44:24 +05:30
- .rspec-base-migration
parallel : 2
2020-04-22 19:07:51 +05:30
rspec-ee unit pg11 :
extends : .rspec-ee-base-pg11
2020-03-13 15:44:24 +05:30
parallel : 10
2020-04-22 19:07:51 +05:30
rspec-ee integration pg11 :
extends : .rspec-ee-base-pg11
2020-03-13 15:44:24 +05:30
parallel : 4
2020-04-22 19:07:51 +05:30
rspec-ee system pg11 :
extends : .rspec-ee-base-pg11
2020-03-13 15:44:24 +05:30
parallel : 6
.rspec-ee-base-geo :
extends : .rspec-base-ee
script :
2020-05-24 23:13:21 +05:30
- run_timed_command "scripts/gitaly-test-build"
- run_timed_command "scripts/gitaly-test-spawn"
2020-03-13 15:44:24 +05:30
- source scripts/rspec_helpers.sh
- scripts/prepare_postgres_fdw.sh
- rspec_paralellized_job "--tag ~quarantine --tag geo"
2020-04-22 19:07:51 +05:30
.rspec-ee-base-geo-pg11 :
2020-03-13 15:44:24 +05:30
extends :
- .rspec-ee-base-geo
2020-04-22 19:07:51 +05:30
- .use-pg11-ee
2020-03-13 15:44:24 +05:30
2020-04-22 19:07:51 +05:30
rspec-ee unit pg11 geo :
extends : .rspec-ee-base-geo-pg11
2020-03-13 15:44:24 +05:30
parallel : 2
2020-04-22 19:07:51 +05:30
rspec-ee integration pg11 geo :
extends : .rspec-ee-base-geo-pg11
2020-03-13 15:44:24 +05:30
2020-04-22 19:07:51 +05:30
rspec-ee system pg11 geo :
extends : .rspec-ee-base-geo-pg11
2019-12-04 20:38:33 +05:30
db:rollback geo :
extends :
- db:rollback
2020-03-13 15:44:24 +05:30
- .rails:rules:ee-only
2019-12-04 20:38:33 +05:30
script :
- bundle exec rake geo:db:migrate VERSION=20170627195211
- bundle exec rake geo:db:migrate
2020-05-24 23:13:21 +05:30
# EE: default refs (MRs, master, schedules) jobs #
##################################################
2020-06-23 00:09:42 +05:30
##################################################
# EE: Canonical MR pipelines
rspec foss-impact :
extends :
- .rspec-base
- .as-if-foss
- .rails:rules:ee-mr-only
- .use-pg11
script :
- install_gitlab_gem
- run_timed_command "scripts/gitaly-test-build"
- run_timed_command "scripts/gitaly-test-spawn"
- source scripts/rspec_helpers.sh
- tooling/bin/find_foss_tests tmp/matching_foss_tests.txt
- rspec_matched_tests tmp/matching_foss_tests.txt "--tag ~quarantine --tag ~geo --tag ~level:migration"
artifacts :
expire_in : 7d
paths :
- tmp/matching_foss_tests.txt
- tmp/capybara/
# EE: Merge Request pipelines
##################################################