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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a196452581ca78bf81e38487d2563675d1f1afce26754e6ae14f754c9386bac8
4
- data.tar.gz: 3e6f876da229512eb72d93a98e5affc28c809c4e01b0fadf2dcd13a1e743ba12
3
+ metadata.gz: 7423be5876c10c8dbace27a5fa18a3b0590a8bc49198f16b67f14d6b7435f9cc
4
+ data.tar.gz: 774eb7f437c5be8d533ac76e913883725d7b824eedeb3e4225f9200cb740cc80
5
5
  SHA512:
6
- metadata.gz: 6b87108ae34a262954ea9ce8ef0129383c76a9e73812819286aa35e5ff8200a7763fb048144c7ce316a4c45f7d5d11ffb1349864f3d493e588fde1fbfbaa6516
7
- data.tar.gz: e37a184f29e23f5b02c58365f5628066cbac40158cbd764dfc118bf62176a1cd7690835ede80e8e9a0a5ab8d230dc1e5b509d35d7bb77626fd3b31bc779ed3b7
6
+ metadata.gz: b680735a2f62976139e848396ae6a5b5bf23d27e25163d03003933a33be7d91e32644b20a5c2a00687a09821b97ccda0212c18f048789ed2b52ecac0eb23c22b
7
+ data.tar.gz: 5489e42c1191a98364f9f3e30a4b9768f0105e2b149ec731f6142334ac10336751e108116736ec214a190accf898dfed9d5c205b44dd9bed8869076eee857db7
@@ -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
- extends: .default-rules
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:
@@ -1,5 +1,5 @@
1
1
  module Gitlab
2
2
  module QA
3
- VERSION = '6.15.0'.freeze
3
+ VERSION = '6.15.1'.freeze
4
4
  end
5
5
  end
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.0
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-01 00:00:00.000000000 Z
11
+ date: 2020-12-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control