gitlab-qa 6.15.0 → 6.15.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.yml +14 -8
- 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: 7423be5876c10c8dbace27a5fa18a3b0590a8bc49198f16b67f14d6b7435f9cc
|
4
|
+
data.tar.gz: 774eb7f437c5be8d533ac76e913883725d7b824eedeb3e4225f9200cb740cc80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b680735a2f62976139e848396ae6a5b5bf23d27e25163d03003933a33be7d91e32644b20a5c2a00687a09821b97ccda0212c18f048789ed2b52ecac0eb23c22b
|
7
|
+
data.tar.gz: 5489e42c1191a98364f9f3e30a4b9768f0105e2b149ec731f6142334ac10336751e108116736ec214a190accf898dfed9d5c205b44dd9bed8869076eee857db7
|
data/.gitlab-ci.yml
CHANGED
@@ -35,13 +35,6 @@ workflow:
|
|
35
35
|
# For triggers from GitLab MR pipelines (and pipelines from other projects), create a pipeline
|
36
36
|
- if: '$CI_PIPELINE_SOURCE == "pipeline"'
|
37
37
|
|
38
|
-
.default-rules:
|
39
|
-
rules:
|
40
|
-
- if: '$CI_COMMIT_TAG || $RELEASE'
|
41
|
-
when: never
|
42
|
-
- if: '$RELEASE == null && $CI_JOB_NAME =~ /staging/'
|
43
|
-
when: manual
|
44
|
-
|
45
38
|
variables:
|
46
39
|
DOCKER_DRIVER: overlay2
|
47
40
|
DOCKER_HOST: tcp://docker:2375
|
@@ -92,6 +85,9 @@ rspec:
|
|
92
85
|
variables:
|
93
86
|
DEFAULT_RELEASE: "CE"
|
94
87
|
rules:
|
88
|
+
# Don't run E2E jobs on release pipelines
|
89
|
+
- changes: ["lib/**/version.rb"]
|
90
|
+
when: never
|
95
91
|
- if: '$CI_COMMIT_TAG || $RELEASE =~ /gitlab-ee/'
|
96
92
|
when: never
|
97
93
|
- if: '$RELEASE == null && $CI_JOB_NAME =~ /quarantine|custom/'
|
@@ -106,6 +102,9 @@ rspec:
|
|
106
102
|
variables:
|
107
103
|
DEFAULT_RELEASE: "EE"
|
108
104
|
rules:
|
105
|
+
# Don't run E2E jobs on release pipelines
|
106
|
+
- changes: ["lib/**/version.rb"]
|
107
|
+
when: never
|
109
108
|
- if: '$CI_COMMIT_TAG || $RELEASE =~ /gitlab-ce/'
|
110
109
|
when: never
|
111
110
|
- if: '$RELEASE == null && $CI_JOB_NAME =~ /quarantine|custom/'
|
@@ -117,7 +116,14 @@ rspec:
|
|
117
116
|
- if: '$RELEASE == null || $RELEASE =~ /gitlab-ee/ || $CI_MERGE_REQUEST_ID || $CI_COMMIT_REF_NAME == "master"'
|
118
117
|
|
119
118
|
.only-qa:
|
120
|
-
|
119
|
+
rules:
|
120
|
+
# Don't run E2E jobs on release pipelines
|
121
|
+
- changes: ["lib/**/version.rb"]
|
122
|
+
when: never
|
123
|
+
- if: '$CI_COMMIT_TAG || $RELEASE'
|
124
|
+
when: never
|
125
|
+
- if: '$RELEASE == null && $CI_JOB_NAME =~ /staging/'
|
126
|
+
when: manual
|
121
127
|
|
122
128
|
.high-capacity:
|
123
129
|
tags:
|
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.15.
|
4
|
+
version: 6.15.1
|
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-12-
|
11
|
+
date: 2020-12-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: climate_control
|