2019-12-21 20:55:43 +05:30
|
|
|
.qa-job-base:
|
2022-10-11 01:57:18 +05:30
|
|
|
image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/gitlab-build-images/debian-bullseye-ruby-${RUBY_VERSION}:bundler-2.3-chrome-${CHROME_VERSION}-docker-${DOCKER_VERSION}
|
2019-12-21 20:55:43 +05:30
|
|
|
extends:
|
|
|
|
- .default-retry
|
2020-06-23 00:09:42 +05:30
|
|
|
- .qa-cache
|
2019-12-21 20:55:43 +05:30
|
|
|
stage: test
|
2020-04-08 14:13:33 +05:30
|
|
|
needs: []
|
2021-06-08 01:23:25 +05:30
|
|
|
variables:
|
|
|
|
USE_BUNDLE_INSTALL: "false"
|
|
|
|
SETUP_DB: "false"
|
2019-12-21 20:55:43 +05:30
|
|
|
before_script:
|
2021-06-08 01:23:25 +05:30
|
|
|
- !reference [.default-before_script, before_script]
|
2022-08-13 15:12:31 +05:30
|
|
|
- cd qa && bundle install
|
2019-12-21 20:55:43 +05:30
|
|
|
|
|
|
|
qa:internal:
|
2020-03-13 15:44:24 +05:30
|
|
|
extends:
|
|
|
|
- .qa-job-base
|
2022-06-21 17:19:12 +05:30
|
|
|
- .qa:rules:internal
|
2020-03-13 15:44:24 +05:30
|
|
|
script:
|
2022-06-21 17:19:12 +05:30
|
|
|
- bundle exec rspec -O .rspec_internal
|
2020-03-13 15:44:24 +05:30
|
|
|
|
|
|
|
qa:internal-as-if-foss:
|
|
|
|
extends:
|
2020-06-23 00:09:42 +05:30
|
|
|
- qa:internal
|
2022-06-21 17:19:12 +05:30
|
|
|
- .qa:rules:internal-as-if-foss
|
2020-03-13 15:44:24 +05:30
|
|
|
- .as-if-foss
|
2019-12-21 20:55:43 +05:30
|
|
|
|
|
|
|
qa:selectors:
|
2020-03-13 15:44:24 +05:30
|
|
|
extends:
|
|
|
|
- .qa-job-base
|
|
|
|
- .qa:rules:ee-and-foss
|
2019-12-21 20:55:43 +05:30
|
|
|
script:
|
|
|
|
- bundle exec bin/qa Test::Sanity::Selectors
|
|
|
|
|
2022-06-21 17:19:12 +05:30
|
|
|
qa:master-auto-quarantine-dequarantine:
|
|
|
|
extends:
|
|
|
|
- .qa-job-base
|
|
|
|
rules:
|
|
|
|
- if: '$QA_TRIGGER_AUTO_QUARANTINE =~ /true|yes|1/i'
|
|
|
|
script:
|
|
|
|
- bundle exec confiner -r .confiner/master.yml
|
|
|
|
allow_failure: true
|
|
|
|
|
|
|
|
qa:nightly-auto-quarantine-dequarantine:
|
2022-03-02 08:16:31 +05:30
|
|
|
extends:
|
|
|
|
- .qa-job-base
|
|
|
|
rules:
|
|
|
|
- if: '$QA_TRIGGER_AUTO_QUARANTINE =~ /true|yes|1/i'
|
|
|
|
script:
|
2022-06-21 17:19:12 +05:30
|
|
|
- bundle exec confiner -r .confiner/nightly.yml
|
2022-03-02 08:16:31 +05:30
|
|
|
allow_failure: true
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
qa:selectors-as-if-foss:
|
2019-12-21 20:55:43 +05:30
|
|
|
extends:
|
|
|
|
- qa:selectors
|
2020-05-24 23:13:21 +05:30
|
|
|
- .qa:rules:as-if-foss
|
2020-03-13 15:44:24 +05:30
|
|
|
- .as-if-foss
|
2019-12-21 20:55:43 +05:30
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
qa:update-qa-cache:
|
2020-06-23 00:09:42 +05:30
|
|
|
extends:
|
|
|
|
- .qa-job-base
|
2021-06-08 01:23:25 +05:30
|
|
|
- .qa-cache-push
|
2020-06-23 00:09:42 +05:30
|
|
|
- .shared:rules:update-cache
|
|
|
|
stage: prepare
|
|
|
|
script:
|
|
|
|
- echo "Cache has been updated and ready to be uploaded."
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
e2e:package-and-test:
|
2022-07-23 23:45:48 +05:30
|
|
|
extends:
|
2022-10-11 01:57:18 +05:30
|
|
|
- .qa:rules:package-and-test
|
2019-12-04 20:38:33 +05:30
|
|
|
stage: qa
|
2020-04-22 19:07:51 +05:30
|
|
|
needs:
|
2022-10-11 01:57:18 +05:30
|
|
|
- build-assets-image
|
|
|
|
- build-qa-image
|
|
|
|
- e2e-test-pipeline-generate
|
2021-12-11 22:18:48 +05:30
|
|
|
variables:
|
2023-03-04 22:38:38 +05:30
|
|
|
# This is needed by `trigger-omnibus-env` (`.gitlab/ci/package-and-test/main.gitlab-ci.yml`).
|
|
|
|
PARENT_PIPELINE_ID: $CI_PIPELINE_ID
|
2022-10-11 01:57:18 +05:30
|
|
|
SKIP_MESSAGE: Skipping package-and-test due to mr containing only quarantine changes!
|
2022-11-25 23:54:43 +05:30
|
|
|
RELEASE: "${REGISTRY_HOST}/${REGISTRY_GROUP}/build/omnibus-gitlab-mirror/gitlab-ee:${CI_COMMIT_SHA}"
|
|
|
|
GITLAB_QA_IMAGE: "${CI_REGISTRY_IMAGE}/gitlab-ee-qa:${CI_COMMIT_SHA}"
|
2023-01-13 00:05:48 +05:30
|
|
|
RUN_WITH_BUNDLE: "true" # instructs pipeline to install and run gitlab-qa gem via bundler
|
|
|
|
QA_PATH: qa # sets the optional path for bundler to run from
|
2022-10-11 01:57:18 +05:30
|
|
|
trigger:
|
|
|
|
strategy: depend
|
2022-11-25 23:54:43 +05:30
|
|
|
forward:
|
|
|
|
yaml_variables: true
|
|
|
|
pipeline_variables: true
|
2022-10-11 01:57:18 +05:30
|
|
|
include:
|
|
|
|
- artifact: package-and-test-pipeline.yml
|
|
|
|
job: e2e-test-pipeline-generate
|
2021-12-11 22:18:48 +05:30
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
# Fetch child pipeline test results and store in parent pipeline
|
|
|
|
# workaround until natively implemented: https://gitlab.com/groups/gitlab-org/-/epics/8205
|
|
|
|
e2e:package-and-test-results:
|
|
|
|
image: ${REGISTRY_HOST}/${REGISTRY_GROUP}/gitlab-build-images/debian-bullseye-ruby-${RUBY_VERSION}:bundler-2.3
|
2021-12-11 22:18:48 +05:30
|
|
|
extends:
|
2022-10-11 01:57:18 +05:30
|
|
|
- .qa-job-base
|
|
|
|
- .qa:rules:package-and-test
|
|
|
|
stage: qa
|
|
|
|
needs:
|
|
|
|
- e2e:package-and-test
|
2022-07-16 23:28:13 +05:30
|
|
|
variables:
|
2022-10-11 01:57:18 +05:30
|
|
|
COLORIZED_LOGS: "true"
|
|
|
|
QA_LOG_LEVEL: "debug"
|
|
|
|
when: always
|
|
|
|
allow_failure: true
|
|
|
|
script:
|
|
|
|
- bundle exec rake "ci:download_test_results[e2e:package-and-test,e2e-test-report,${CI_PROJECT_DIR}]"
|
|
|
|
artifacts:
|
|
|
|
when: always
|
|
|
|
reports:
|
|
|
|
junit: gitlab-qa-run-*/**/rspec-*.xml
|