gitlab-qa 7.10.0 → 7.13.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6bdd2d8930d98c4af896a15b4f43a724a2c24300ae44d3498f7db96914592880
4
- data.tar.gz: 3db21c904e7b711d167f465f9a75abe32526bf89edfa095e2551d91786962e6d
3
+ metadata.gz: fa0a2ed64b31caa2405443be7941fa506530a091634285793fa5b9ba3e7874d0
4
+ data.tar.gz: 10b2f1c14a204ce05c0e78dff34fe9c489c560be6b65e22a11e6d8730b569ae0
5
5
  SHA512:
6
- metadata.gz: 7fcfe4c12d04ebcb175e7fc7f7d3a282e2a759eb89e07cff001741d80b476658a033de10e32acd7ed05b6c1008025ad0dda15ecf6dd4e8b2f347eb4c9c023080
7
- data.tar.gz: 70767539d91c219907646c5197127db1070317ea8038f2d01b7a5bcb150fcde36a6f6efad73c71357f8301069845b15c148fdf452a63c2a739a6c68eb229012f
6
+ metadata.gz: 34fea47db618bbd6e3cc335514e061c6dd7b8164d3bdeed3a60e3d5f7cf2e6ff477dd03f5b780fa7fd82c9bb9fff575cc8e566a213de0b4289c68037acb97c6e
7
+ data.tar.gz: 2e55d271110627e07bfccad350a56de86799b8292b0a8ea1c7da7b1383f10315e4e684250e6c2795103118a140fb6c1643d68a21468bfaf47b70e98315bd3130
@@ -0,0 +1,100 @@
1
+ ##############
2
+ # Conditions #
3
+ ##############
4
+ .if-default-refs-or-ce: &if-default-refs-or-ce
5
+ if: '$RELEASE == null || $RELEASE =~ /gitlab-ce/ || $CI_MERGE_REQUEST_ID || $CI_COMMIT_REF_NAME == "master"'
6
+
7
+ .if-default-refs-or-ee: &if-default-refs-or-ee
8
+ if: '$RELEASE == null || $RELEASE =~ /gitlab-ee/ || $CI_MERGE_REQUEST_ID || $CI_COMMIT_REF_NAME == "master"'
9
+
10
+ .if-not-gitlab-qa-release: &if-not-gitlab-qa-release
11
+ if: '$CI_SERVER_HOST == "gitlab.com" && $CI_PROJECT_PATH == "gitlab-org/gitlab-qa" && $RELEASE == null'
12
+
13
+ .if-staging-and-not-release: &if-staging-and-not-release
14
+ if: '$RELEASE == null && $CI_JOB_NAME =~ /staging/'
15
+
16
+ .if-quarantine-or-custom-and-not-release: &if-quarantine-or-custom-and-not-release
17
+ if: '$RELEASE == null && $CI_JOB_NAME =~ /quarantine|custom/'
18
+
19
+ .if-quarantine-or-custom-and-ee-release: &if-quarantine-or-custom-and-ee-release
20
+ if: '$RELEASE =~ /gitlab-ee/ && $CI_JOB_NAME =~ /quarantine|custom/'
21
+
22
+ .if-quarantine-or-custom-and-ce-release: &if-quarantine-or-custom-and-ce-release
23
+ if: '$RELEASE =~ /gitlab-ce/ && $CI_JOB_NAME =~ /quarantine|custom/'
24
+
25
+ .if-quarantine-or-custom-and-merge-request: &if-quarantine-or-custom-and-merge-request
26
+ if: '$CI_MERGE_REQUEST_ID && $CI_JOB_NAME =~ /quarantine|custom/'
27
+
28
+ .if-tag-or-ee-release: &if-tag-or-ee-release
29
+ if: '$CI_COMMIT_TAG || $RELEASE =~ /gitlab-ee/'
30
+
31
+ .if-tag-or-ce-release: &if-tag-or-ce-release
32
+ if: '$CI_COMMIT_TAG || $RELEASE =~ /gitlab-ce/'
33
+
34
+ .if-tag-or-release: &if-tag-or-release
35
+ if: '$CI_COMMIT_TAG || $RELEASE'
36
+
37
+ .if-set-feature-flag: &if-set-feature-flag
38
+ if: '$GITLAB_QA_OPTIONS =~ /--set-feature-flags/'
39
+
40
+ #########
41
+ # Rules #
42
+ #########
43
+
44
+ .rules:ce-qa:
45
+ rules:
46
+ - <<: *if-not-gitlab-qa-release
47
+ changes: ["lib/**/version.rb"]
48
+ when: never
49
+ - <<: *if-tag-or-ee-release
50
+ when: never
51
+ - <<: *if-quarantine-or-custom-and-not-release
52
+ when: manual
53
+ - <<: *if-quarantine-or-custom-and-ce-release
54
+ when: manual
55
+ - <<: *if-quarantine-or-custom-and-merge-request
56
+ when: manual
57
+ - <<: *if-default-refs-or-ce
58
+
59
+ .rules:ee-qa:
60
+ rules:
61
+ - <<: *if-not-gitlab-qa-release
62
+ changes: ["lib/**/version.rb"]
63
+ when: never
64
+ - <<: *if-tag-or-ce-release
65
+ when: never
66
+ - <<: *if-quarantine-or-custom-and-not-release
67
+ when: manual
68
+ - <<: *if-quarantine-or-custom-and-ee-release
69
+ when: manual
70
+ - <<: *if-quarantine-or-custom-and-merge-request
71
+ when: manual
72
+ - <<: *if-default-refs-or-ee
73
+
74
+ .rules:only-qa:
75
+ rules:
76
+ - <<: *if-not-gitlab-qa-release
77
+ changes: ["lib/**/version.rb"]
78
+ when: never
79
+ - <<: *if-tag-or-release
80
+ when: never
81
+ - <<: *if-staging-and-not-release
82
+ when: manual
83
+
84
+ .rules:ce-never-when-triggered-by-feature-flag-definition-change:
85
+ rules:
86
+ - <<: *if-set-feature-flag
87
+ when: never
88
+ - !reference [".rules:ce-qa", rules]
89
+
90
+ .rules:ee-never-when-triggered-by-feature-flag-definition-change:
91
+ rules:
92
+ - <<: *if-set-feature-flag
93
+ when: never
94
+ - !reference [".rules:ee-qa", rules]
95
+
96
+ .rules:only-qa-never-when-triggered-by-feature-flag-definition-change:
97
+ rules:
98
+ - <<: *if-set-feature-flag
99
+ when: never
100
+ - !reference [".rules:only-qa", rules]