gitlab-qa 8.4.0 → 8.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitlab/ci/jobs/mtls.gitlab-ci.yml +2 -0
- data/Gemfile.lock +1 -1
- data/lib/gitlab/qa/report/report_as_issue.rb +3 -3
- data/lib/gitlab/qa/runtime/env.rb +1 -1
- data/lib/gitlab/qa/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a758eb621a80dc1dffc3abca040003057fdb20fc75c246c1ffdac09808c0a379
|
|
4
|
+
data.tar.gz: 0b753ad126a428621c735d2277cf2d21132de0969078255afce15affe4e8d7e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db2058be2ccfb34ac72bb7a14cb453142a06d7a88c9084fe575d62425faac0ebda7beace5d45568a7945a3d3cad19939e0a8e60fa0b621b20c39424e01ef2dc9
|
|
7
|
+
data.tar.gz: 84fcf64c8afe5075d761f0f8116a8fbfb8944c3f801c145c003e13485110815bcbacda5c3ddf01d92e3353f280bdb2cf6cce4862519557912d0894d434f1cd77
|
|
@@ -2,6 +2,7 @@ ce:mtls:
|
|
|
2
2
|
extends:
|
|
3
3
|
- .rules:ce-never-when-triggered-by-feature-flag-definition-change
|
|
4
4
|
- .test
|
|
5
|
+
- .high-capacity
|
|
5
6
|
- .ce-variables
|
|
6
7
|
- .rspec-report-opts
|
|
7
8
|
variables:
|
|
@@ -11,6 +12,7 @@ ee:mtls:
|
|
|
11
12
|
extends:
|
|
12
13
|
- .rules:ee-never-when-triggered-by-feature-flag-definition-change
|
|
13
14
|
- .test
|
|
15
|
+
- .high-capacity
|
|
14
16
|
- .ee-variables
|
|
15
17
|
- .rspec-report-opts
|
|
16
18
|
variables:
|
data/Gemfile.lock
CHANGED
|
@@ -159,14 +159,14 @@ module Gitlab
|
|
|
159
159
|
# Gets the name of the pipeline the test was run in, to be used as the key of a scoped label
|
|
160
160
|
#
|
|
161
161
|
# Tests can be run in several pipelines:
|
|
162
|
-
# gitlab
|
|
162
|
+
# gitlab, nightly, staging, canary, production, preprod, MRs, and the default branch (master/main)
|
|
163
163
|
#
|
|
164
164
|
# Some of those run in their own project, so CI_PROJECT_NAME is the name we need. Those are:
|
|
165
165
|
# nightly, staging, canary, production, and preprod
|
|
166
166
|
#
|
|
167
|
-
# MR, master/main, and gitlab
|
|
167
|
+
# MR, master/main, and gitlab tests run in gitlab-qa, but we only want to report tests run on
|
|
168
168
|
# master/main because the other pipelines will be monitored by the author of the MR that triggered them.
|
|
169
|
-
# So we assume that we're reporting a master/main pipeline if the project name is 'gitlab
|
|
169
|
+
# So we assume that we're reporting a master/main pipeline if the project name is 'gitlab'.
|
|
170
170
|
|
|
171
171
|
@pipeline ||= Runtime::Env.pipeline_from_project_name
|
|
172
172
|
end
|
|
@@ -199,7 +199,7 @@ module Gitlab
|
|
|
199
199
|
end
|
|
200
200
|
|
|
201
201
|
def pipeline_from_project_name
|
|
202
|
-
ci_project_name.to_s.start_with?('gitlab
|
|
202
|
+
ci_project_name.to_s.start_with?('gitlab') ? QA::Runtime::Env.default_branch : ci_project_name
|
|
203
203
|
end
|
|
204
204
|
|
|
205
205
|
def run_id
|
data/lib/gitlab/qa/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-qa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 8.4.
|
|
4
|
+
version: 8.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- GitLab Quality
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|