gitlab-qa 6.1.3 → 6.2.0
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.yml +0 -38
- data/docs/what_tests_can_be_run.md +1 -0
- data/lib/gitlab/qa/runtime/env.rb +2 -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: 20da7f808929fe216ed49cefd35aeeab33c0e0a2c35517aa5ef15569271e2d17
|
|
4
|
+
data.tar.gz: d87695289a8d8f13f4c9baa5547a46e45f4777e07adcbfc78570f4f35a0db71f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ba356e43063cf62c035364bf6e929d2545d4ad9d6042159cf68b58cce15af7099843ab556622076b705fa5f633d7defc3158cbdaaa948fd2014e79eb5bfbe290
|
|
7
|
+
data.tar.gz: ea5048047d6c5816e0401d0bf104757be344145740063255581fbbadc27c69334ad737a23b81049ede31f488f3f13858411a1126ca07b3ee14c6a87ad8e9b030
|
data/.gitlab-ci.yml
CHANGED
|
@@ -229,44 +229,6 @@ ee:instance-quarantine:
|
|
|
229
229
|
variables:
|
|
230
230
|
QA_RSPEC_TAGS: "--tag quarantine --tag ~orchestrated"
|
|
231
231
|
|
|
232
|
-
ce:docker:
|
|
233
|
-
extends:
|
|
234
|
-
- .test
|
|
235
|
-
- .high-capacity
|
|
236
|
-
- .ce-qa
|
|
237
|
-
- .rspec-report-opts
|
|
238
|
-
variables:
|
|
239
|
-
QA_RSPEC_TAGS: "--tag docker"
|
|
240
|
-
|
|
241
|
-
ce:docker-quarantine:
|
|
242
|
-
extends:
|
|
243
|
-
- .test
|
|
244
|
-
- .high-capacity
|
|
245
|
-
- .ce-qa
|
|
246
|
-
- .quarantine
|
|
247
|
-
- .rspec-report-opts
|
|
248
|
-
variables:
|
|
249
|
-
QA_RSPEC_TAGS: "--tag docker --tag quarantine"
|
|
250
|
-
|
|
251
|
-
ee:docker:
|
|
252
|
-
extends:
|
|
253
|
-
- .test
|
|
254
|
-
- .high-capacity
|
|
255
|
-
- .ee-qa
|
|
256
|
-
- .rspec-report-opts
|
|
257
|
-
variables:
|
|
258
|
-
QA_RSPEC_TAGS: "--tag docker"
|
|
259
|
-
|
|
260
|
-
ee:docker-quarantine:
|
|
261
|
-
extends:
|
|
262
|
-
- .test
|
|
263
|
-
- .high-capacity
|
|
264
|
-
- .ee-qa
|
|
265
|
-
- .quarantine
|
|
266
|
-
- .rspec-report-opts
|
|
267
|
-
variables:
|
|
268
|
-
QA_RSPEC_TAGS: "--tag docker --tag quarantine"
|
|
269
|
-
|
|
270
232
|
ce:relative_url:
|
|
271
233
|
extends:
|
|
272
234
|
- .test
|
|
@@ -83,6 +83,7 @@ All environment variables used by GitLab QA should be defined in [`lib/gitlab/qa
|
|
|
83
83
|
| `JIRA_ADMIN_USERNAME` |- | Username for authenticating with Jira server as admin. | No|
|
|
84
84
|
| `JIRA_ADMIN_PASSWORD` |- | Password for authenticating with Jira server as admin. | No|
|
|
85
85
|
| `CACHE_NAMESPACE_NAME` | `true` | Cache namespace name for groups. | No|
|
|
86
|
+
| `DEPLOY_VERSION` |- | The version of GitLab being tested against. | No|
|
|
86
87
|
|
|
87
88
|
## [Supported Remote Grid environment variables](./running_against_remote_grid.md)
|
|
88
89
|
|
|
@@ -81,7 +81,8 @@ module Gitlab
|
|
|
81
81
|
'JIRA_HOSTNAME' => :jira_hostname,
|
|
82
82
|
'JIRA_ADMIN_USERNAME' => :jira_admin_username,
|
|
83
83
|
'JIRA_ADMIN_PASSWORD' => :jira_admin_password,
|
|
84
|
-
'CACHE_NAMESPACE_NAME' => :cache_namespace_name
|
|
84
|
+
'CACHE_NAMESPACE_NAME' => :cache_namespace_name,
|
|
85
|
+
'DEPLOY_VERSION' => :deploy_version
|
|
85
86
|
}.freeze
|
|
86
87
|
|
|
87
88
|
ENV_VARIABLES.each_value do |accessor|
|
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: 6.
|
|
4
|
+
version: 6.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grzegorz Bizon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-09-
|
|
11
|
+
date: 2020-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|