Skip to content
Snippets Groups Projects
Commit f4812f53 authored by Balasankar 'Balu' C's avatar Balasankar 'Balu' C
Browse files

Merge branch 'shl-pass-qa-tests-env-var-to-qa-trigger' into 'master'

Pass QA_TESTS env var to triggered QA pipeline

See merge request gitlab-org/omnibus-gitlab!5773
parents 413162b6 cbe413e7
No related branches found
No related tags found
2 merge requests!63Making Heptapod 0.29 the new stable,!62GitLab 14.6
......@@ -17,6 +17,7 @@
"token" => Gitlab::Util.get_env('CI_JOB_TOKEN'),
"variables[RELEASE]" => image,
"variables[QA_IMAGE]" => Gitlab::Util.get_env('QA_IMAGE'),
"variables[QA_TESTS]" => Gitlab::Util.get_env('QA_TESTS'),
"variables[GITLAB_QA_OPTIONS]" => Gitlab::Util.get_env('GITLAB_QA_OPTIONS'),
"variables[TRIGGERED_USER]" => Gitlab::Util.get_env("TRIGGERED_USER") || Gitlab::Util.get_env("GITLAB_USER_NAME"),
"variables[TRIGGER_SOURCE]" => Gitlab::Util.get_env('CI_JOB_URL'),
......
......@@ -136,6 +136,7 @@
allow(ENV).to receive(:[]).with('TOP_UPSTREAM_MERGE_REQUEST_PROJECT_ID').and_return("543210")
allow(ENV).to receive(:[]).with('TOP_UPSTREAM_MERGE_REQUEST_IID').and_return("12121")
allow(ENV).to receive(:[]).with('QA_BRANCH').and_return(nil)
allow(ENV).to receive(:[]).with('QA_TESTS').and_return('qa/specs/features/browser_ui/1_manage/login/log_in_spec.rb')
allow(ENV).to receive(:[]).with('GITLAB_QA_OPTIONS').and_return("--set-feature-flags test_feature_flag=enable")
allow(DockerOperations).to receive(:build).and_return(true)
allow(Build::QA).to receive(:get_gitlab_repo).and_return("/tmp/gitlab.1234/qa")
......@@ -153,6 +154,7 @@
"ref" => "master",
"token" => "1234",
"variables[RELEASE]" => "registry.gitlab.com/gitlab-ce:latest",
"variables[QA_TESTS]" => "qa/specs/features/browser_ui/1_manage/login/log_in_spec.rb",
"variables[GITLAB_QA_OPTIONS]" => "--set-feature-flags test_feature_flag=enable",
"variables[TRIGGERED_USER]" => "John Doe",
"variables[TRIGGER_SOURCE]" => "https://gitlab.com/gitlab-org/omnibus-gitlab/-/jobs/12345",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment