travis-conditions 0.0.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +65 -0
  3. data/Gemfile.lock +1 -1
  4. data/NOTES.md +107 -0
  5. data/README.md +261 -13
  6. data/bin/travis-conditions +34 -0
  7. data/lib/travis/conditions.rb +10 -16
  8. data/lib/travis/conditions/v0.rb +30 -0
  9. data/lib/travis/conditions/v0/data.rb +57 -0
  10. data/lib/travis/conditions/v0/eval.rb +70 -0
  11. data/lib/travis/conditions/v0/parser.rb +204 -0
  12. data/lib/travis/conditions/v1.rb +19 -0
  13. data/lib/travis/conditions/v1/boolean.rb +71 -0
  14. data/lib/travis/conditions/v1/data.rb +75 -0
  15. data/lib/travis/conditions/v1/eval.rb +114 -0
  16. data/lib/travis/conditions/v1/helper.rb +30 -0
  17. data/lib/travis/conditions/v1/parser.rb +214 -0
  18. data/lib/travis/conditions/version.rb +1 -1
  19. data/spec/conditions_spec.rb +15 -0
  20. data/spec/v0/conditions_spec.rb +15 -0
  21. data/spec/{data_spec.rb → v0/data_spec.rb} +6 -1
  22. data/spec/{eval_spec.rb → v0/eval_spec.rb} +1 -1
  23. data/spec/v0/fixtures/failures.txt +342 -0
  24. data/spec/v0/fixtures/passes.txt +1685 -0
  25. data/spec/{parser_spec.rb → v0/parser_spec.rb} +1 -1
  26. data/spec/v1/conditions_spec.rb +44 -0
  27. data/spec/v1/data_spec.rb +30 -0
  28. data/spec/v1/eval_spec.rb +349 -0
  29. data/spec/v1/fixtures/failures.txt +336 -0
  30. data/spec/v1/fixtures/passes.txt +1634 -0
  31. data/spec/v1/parser/boolean_spec.rb +215 -0
  32. data/spec/v1/parser/call_spec.rb +68 -0
  33. data/spec/v1/parser/comma_spec.rb +28 -0
  34. data/spec/v1/parser/cont_spec.rb +41 -0
  35. data/spec/v1/parser/eq_spec.rb +16 -0
  36. data/spec/v1/parser/in_list_spec.rb +60 -0
  37. data/spec/v1/parser/is_pred_spec.rb +24 -0
  38. data/spec/v1/parser/list_spec.rb +36 -0
  39. data/spec/v1/parser/operand_spec.rb +16 -0
  40. data/spec/v1/parser/parens_spec.rb +28 -0
  41. data/spec/v1/parser/quoted_spec.rb +24 -0
  42. data/spec/v1/parser/re_spec.rb +16 -0
  43. data/spec/v1/parser/regex_spec.rb +12 -0
  44. data/spec/v1/parser/space_spec.rb +40 -0
  45. data/spec/v1/parser/term_spec.rb +84 -0
  46. data/spec/v1/parser/val_spec.rb +24 -0
  47. data/spec/v1/parser/var_spec.rb +16 -0
  48. data/spec/v1/parser_spec.rb +486 -0
  49. data/spec/v1/user_spec.rb +223 -0
  50. metadata +48 -9
  51. data/lib/travis/conditions/data.rb +0 -45
  52. data/lib/travis/conditions/eval.rb +0 -68
  53. data/lib/travis/conditions/parser.rb +0 -202
@@ -1,5 +1,5 @@
1
1
  module Travis
2
2
  module Conditions
3
- VERSION = '0.0.2'
3
+ VERSION = '1.0.0'
4
4
  end
5
5
  end
@@ -0,0 +1,15 @@
1
+ describe Travis::Conditions, 'eval' do
2
+ let(:str) { 'branch = master' }
3
+ let(:data) { { branch: 'master' } }
4
+ subject { described_class.eval(str, data, opts) }
5
+
6
+ describe 'v0' do
7
+ let(:opts) { { version: :v0 } }
8
+ it { should eq true }
9
+ end
10
+
11
+ describe 'v1' do
12
+ let(:opts) { { version: :v1 } }
13
+ it { should eq true }
14
+ end
15
+ end
@@ -0,0 +1,15 @@
1
+ describe Travis::Conditions::V0, 'real conditions' do
2
+ # File.readlines('spec/v0/fixtures/passes.txt').each do |cond|
3
+ # context do
4
+ # let(:subject) { described_class.parse(cond) }
5
+ # it(cond) { expect { subject }.to_not raise_error }
6
+ # end
7
+ # end
8
+
9
+ # File.readlines('spec/v0/fixtures/failures.txt').each do |cond|
10
+ # context do
11
+ # let(:subject) { described_class.parse(cond) }
12
+ # it(cond) { expect { subject }.to raise_error(Travis::Conditions::ParseError) }
13
+ # end
14
+ # end
15
+ end
@@ -1,4 +1,4 @@
1
- describe Travis::Conditions::Data do
1
+ describe Travis::Conditions::V0::Data do
2
2
  let(:env) { nil }
3
3
  let(:data) { { branch: 'branch', env: env } }
4
4
  subject { described_class.new(data) }
@@ -17,4 +17,9 @@ describe Travis::Conditions::Data do
17
17
  it { expect(subject.env(:foo)).to eq 'FOO' }
18
18
  it { expect(subject.env('foo')).to eq 'FOO' }
19
19
  end
20
+
21
+ describe 'given an empty string it raises ArgumentError' do
22
+ let(:env) { '' }
23
+ it { expect { subject }.to raise_error Travis::Conditions::ArgumentError, 'Cannot normalize data[:env] ("" given)' }
24
+ end
20
25
  end
@@ -1,4 +1,4 @@
1
- describe Travis::Conditions, 'eval' do
1
+ describe Travis::Conditions::V0, 'eval' do
2
2
  let(:tag) { nil }
3
3
  let(:data) { { branch: 'master', tag: tag, env: { foo: 'foo' } } }
4
4
  subject { described_class.eval(str, data) }
@@ -0,0 +1,342 @@
1
+ $COVERALLS_REPO_TOKEN != '' AND branch =~ ^v[0-9]+\.x\.x$ AND repo = 'sociomantic-tsunami/libdrizzle-redux' AND
2
+ $COVERALLS_REPO_TOKEN != '' AND branch =~ ^v[0-9]+\.x\.x$ AND repo = 'sociomantic-tsunami/libdrizzle-redux' AND type IS cron
3
+ $COVERALLS_REPO_TOKEN) != '' AND branch =~ ^v[0-9]+\.x\.x$ AND repo = 'sociomantic-tsunami/libdrizzle-redux'
4
+ $COVERALLS_REPO_TOKEN) != '' AND branch =~ ^v[0-9]+\.x\.x$ and repo = 'sociomantic-tsunami/libdrizzle-redux'
5
+ $TRAVIS_BRANCH =~ ^v[0-9]+\.x\.x$ && $TRAVIS_REPO_SLUG = 'sociomantic-tsunami/libdrizzle-redux'
6
+ $TRAVIS_COMMIT_MESSAGE = *[ci builders]*
7
+ $TRAVIS_COMMIT_MESSAGE =~ ^((?!\[tests skip\]).)*$
8
+ $TRAVIS_COMMIT_MESSAGE =~ ^(\[magento tests skip\])
9
+ $TRAVIS_COMMIT_MESSAGE =~ ^(\[tests skip\])
10
+ $TRAVIS_COMMIT_MESSAGE =~ ^(\[woocommerce tests skip\])
11
+ $TRAVIS_OS_NAME = 'linux' && env(DIST_NAME) = 'ubuntu' && env(DIST_VERSION) = 'xenial' && env(COVERALLS_REPO_TOKEN) != ''
12
+ $TRAVIS_OS_NAME = linux && $DIST_NAME = centos && $DIST_VERSION = 7
13
+ $TRAVIS_PULL_REQUEST = "false" && $TRAVIS_BRANCH != "rival_stage"
14
+ $TRAVIS_PULL_REQUEST NOT false
15
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/.* && $TRAVIS_PULL_REQUEST
16
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/.* && $TRAVIS_PULL_REQUEST == "false"
17
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/.* && $TRAVIS_PULL_REQUEST == false
18
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/.* && $TRAVIS_PULL_REQUEST == false"
19
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/major/.* && "$TRAVIS_PULL_REQUEST" == "false"
20
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/major/.* && $TRAVIS_PULL_REQUEST == "false"
21
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/major/.* && $TRAVIS_PULL_REQUEST == false
22
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/major/.* || "$TRAVIS_PULL_REQUEST" == "false"
23
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/minor/.* && $TRAVIS_PULL_REQUEST == "false"
24
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/minor/.* && $TRAVIS_PULL_REQUEST == false
25
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/minor/.* || $TRAVIS_PULL_REQUEST == false
26
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/patch/.* && $TRAVIS_PULL_REQUEST == false
27
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/patch/.* || !$TRAVIS_PULL_REQUEST
28
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/patch/.* || $TRAVIS_PULL_REQUEST == false
29
+ $TRAVIS_TAG != '' && $TRAVIS_TAG =~ ^v[0-9]+\.[0-9]+\.[0-9]+ && $BINTRAY_USER != '' && $BINTRAY_KEY != ''
30
+ ${tag,,} =~ beta
31
+ (($TRAVIS_BRANCH = "master") AND (NOT ($TRAVIS_TAG = NULL OR $TRAVIS_TAG = ""))
32
+ ((( branch = master OR branch =~ ^rough.$ ) AND ( repo = lifeonairteam/stella ))
33
+ ((NOT (env(FRONTEND_FILES_CHANGED) = "") OR (NOT env(ANY_SERVICES_FILES_CHANGED) = "")) AND (NOT (branch IN (master, alpha, staging, prod)))
34
+ ((branch = travis-try) AND (tag IS present)
35
+ ((sender != 'Travis CI User') AND (branch = travisdeploy)
36
+ ((sender != Travis CI User) AND (branch = travisdeploy))
37
+ ((type IN (api, pull_request, push) AND branch = master)
38
+ ((type IN (api, pull_request, push) AND branch = master) OR (tag =~ ^.+$)
39
+ (NOT (env(FRONTEND_FILES_CHANGED) = "" OR NOT env(ANY_SERVICES_FILES_CHANGED) = "") AND NOT (branch IN (master, dev))
40
+ (NOT (env(FRONTEND_FILES_CHANGED) = "" OR NOT env(ANY_SERVICES_FILES_CHANGED) = "") AND NOT branch IN (master, dev)
41
+ (NOT (repo IS conda-forge/staged-recipes)) OR (type IN (pull_request))
42
+ (NOT type = pull_request) AND (branch = master OR tag =~ env(SEMVER_REGEX))
43
+ (NOT type = push) AND (branch = master OR tag =~ env(SEMVER_REGEX))
44
+ (NOT type IN (pull_request) AND ((branch = master) OR (branch =~ ^enterprise-.*))
45
+ (NOT type IN (pull_request)) AND (branch IS master)
46
+ (NOT type in (pull_request)) AND (branch = master OR tag =~ env(SEMVER_REGEX))
47
+ (branch = dev) AND (type IS cron)
48
+ (branch = master AND (type NOT pull_request))
49
+ (branch = master AND NOT type = pull_request) OR tag =~ env(SEMVER_REGEX)
50
+ (branch = master AND type = push) AND env(PEPE) IS pepo
51
+ (branch = master AND type = push) or (head_branch = weight-and-kubernetes type = pull_request)
52
+ (branch = master OR tag =~ env(SEMVER_REGEX)) AND NOT type = pull_request
53
+ (branch = master) AND (env(TRAVIS_TAG) NOT blank)
54
+ (branch = master) AND (tag NOT blank)
55
+ (branch = master) AND (tag NOT blank) AND (type IS push)
56
+ (branch = master) AND (type IS NOT pull_request)
57
+ (branch = master) AND (type IS push)
58
+ (branch = master) AND (type NOT pull_request)
59
+ (branch = master) AND (type NOT pull_request) AND (fork IS false)
60
+ (branch = master) AND NOT (type = pull_request) - k8s/deploy/deploy_to_cluster.sh ${TRAVIS_BUILD_NUMBER} data-eng-apps.k8s.local
61
+ (branch = master) AND env(TRAVIS_TAG) NOT blank
62
+ (branch = master) OR (branch =~ release/.*) tag IS present
63
+ (branch = master) OR (tag =~ ^\d+\.\d+\.\d+$))
64
+ (branch =~ ^develop/travis/.*) OR ($NOT branch =~ ^develop/.*$)
65
+ (branch NOT IN (staging, develop, master)) AND (tag ~= ^(web|vice))
66
+ (env(TRAVIS_PULL_REQUEST_BRANCH) IS blank) AND (branch = master OR tag =~ env(SEMVER_REGEX))
67
+ (env.global(TAG_BRANCH) = build-with-stages) AND (env.global(TRAVIS_TAG) != env.global(TAG_BRANCH))
68
+ (fork IS (false)) AND (NOT (type IN (pull_request)))
69
+ (fork IS (true)) OR (type IN (pull_request))
70
+ (repo IS 2m/sssio) AND (tag =~ ^v)
71
+ (repo IS conda-forge/staged-recipes) AND (NOT (type IN (pull_request)))
72
+ (repo IS conda-forge/staged-recipes) OR (type IN (pull_request))
73
+ (repo NOT conda-forge/staged-recipes) AND (NOT (type IN (pull_request)))
74
+ (repo NOT conda-forge/staged-recipes) OR (type IN (pull_request))
75
+ (type != pull_request) && (branch =~ ^release/.*)
76
+ (type != pull_request) && (branch =~ ^release/major/.*)
77
+ (type != pull_request) && (branch =~ ^release/minor/.*)
78
+ (type != pull_request) && (branch =~ ^release/patch/.*)
79
+ (type = (pull_request)) OR NOT (repo = isuruf/staged-recipes)
80
+ (type = pull_request AND (NOT branch IN (master)) OR (type = tag AND branch = master AND tag =~ ^v\d+\.\d+$)
81
+ (type = pull_request AND (NOT branch IN (master)) OR (type = tag AND branch = master AND tag =~ ^v\d+\.\d+\.\d+$)
82
+ (type = pull_request AND (NOT branch IN (master)) OR (type = tag AND branch = master)
83
+ (type IN (pull_request)) OR (branch IS blank AND $LAST_COMMIT_MESSAGE =~ Update application and assets version*)
84
+ (type IN (pull_request)) OR (env.global(LAST_COMMIT_MESSAGE) =~ ^toto$)
85
+ (type IN (pull_request)) OR env(TRAVIS_COMMIT_MESSAGE) =~ ^Update application and assets version to
86
+ (type IN pull_request) OR ((type IN (push)) AND branch != develop)
87
+ (type IN pull_request) OR ((type IN push) AND branch != develop)
88
+ - MESSAGE=$(git log --format=%B -n 1 $TRAVIS_COMMIT)
89
+ - cd ${REPO}
90
+ - cp -R ${FILES} ${REPO}
91
+ - git add .
92
+ - git clone git://${GH_REPO}
93
+ - git commit -m $TRAVIS_BUILD_NUMBER
94
+ - git config user.email ${EMAIL}
95
+ - git config user.name ${USER}
96
+ - git push "https://${GH_TOKEN}@${GH_REPO}" master > /dev/null 2>&1
97
+ - git remote
98
+ -z "$TRAVIS_TAG"
99
+ -z $TRAVIS_TAG || $TRAVIS_TAG =~ ^*-linux$
100
+ -z '${SLACK_CHANNEL}'
101
+ AND repo = camptocamp/c2cgeoportal
102
+ NOT (((env(FRONTEND_FILES_CHANGED) IS blank AND env(ANY_SERVICES_FILES_CHANGED) IS blank) AND branch IN (master, alpha, staging, prod))
103
+ NOT (env(TRAVIS_COMMIT_MESSAGE) =~ env(FRONTEND_EXCLUSION))
104
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ "no docs"
105
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ env(BACKEND_EXLUSION)
106
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ env(FRONTEND_EXCLUSION)
107
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ env(FRONTEND_EXLUSION)
108
+ NOT type IS pull_request
109
+ OR branch = auto
110
+ ["$TRAVIS_OS_NAME = 'linux' AND env(DIST_NAME) = 'ubuntu' AND env(DIST_VERSION) = 'xenial' AND tag IS present AND tag =~ ^v[0-9]+\\.[0-9]+\\.[0-9]+"]
111
+ ["$WITH_OSX == \"y\""]
112
+ ["$WITH_OSX == y"]
113
+ ["branch = master AND type = push AND sender = pmario"]
114
+ ["branch = master type = push sender = pmario"]
115
+ ["branch = master", "..or deploy-tag"]
116
+ ["branch = master", "NOT type = pull_request"]
117
+ ["branch = master", "NOT type IN (cron)"]
118
+ ["branch = master", "type != pull_request"]
119
+ ["branch = master", "type = push", "sender = pmario"]
120
+ ["branch = master", "type = push"]
121
+ ["branch = master", "type IN (cron)"]
122
+ ["branch = master", "type IN (push)"]
123
+ ["branch = master", "type IS push"]
124
+ ["branch = master"]
125
+ ["branch = rhialto"]
126
+ ["env(PRE_COMMIT_MESSAGE) =~ ^.*build-ios.*$\n"]
127
+ ["env(PRE_COMMIT_MESSAGE) =~ build-android\n"]
128
+ ["env(PRE_COMMIT_MESSAGE) =~ build-ios OR env(PRE_COMMIT_MESSAGE) =~ build-mobile\n"]
129
+ ["repo = gzm55/parent-repositories-maven-extension", "branch = master", "type != pull_request"]
130
+ ["repo = gzm55/parent-repositories-maven-extension", "tag IS present"]
131
+ ["tag =~ ^v2", "branch = master"]
132
+ ["tag IS present AND repo = andreas-bok-sociomantic/libdrizzle-redux"]
133
+ ["tag IS present AND repo = sociomantic-tsunami/libdrizzle-redux AND env(TRAVIS_OS_NAME) = 'linux' AND env(DIST_NAME) = 'ubuntu' AND env(DIST_VERSION) = 'xenial' AND env(CC) = 'gcc' AND env(MAKE_TARGET) =~ 'deb' AND env(DEPLOY_PACKAGE) = 'true'"]
134
+ ["tag IS present", "branch = master"]
135
+ ["type = pull_request\n"]
136
+ ["type IN (pull_request)\n"]
137
+ ["“$TRAVIS_BRANCH” = “master”"]
138
+ [{"env": ["PROJECT_ID=bae-mingo-production"], "branch": "master"}, {"env": ["PROJECT_ID=bae-mingo-development"], "branch": "develop"}, {"env": ["PROJECT_ID=bae-mingo-testing"], "branch": "feature/travis_deploy"}]
139
+ branch != l10n-crowdin AND tag !=~ "-fdroid$"
140
+ branch != l10n-crowdin AND tag !=~ "-fdroid$" AND tag IS present
141
+ branch = ^(master)$
142
+ branch = ^(preview-(.*)|develop)$
143
+ branch = ^(preview-(.*)|develop|rc)$
144
+ branch = ^(rc)$
145
+ branch = ^(rc|master)$
146
+ branch = ^preview-(.*)$
147
+ branch = ^preview-(.*)$ AND type = push
148
+ branch = dev AND type IS cron
149
+ branch = development OR type pull_request
150
+ branch = docker-builds || branch = master || branch = code-freeze-2017
151
+ branch = fix/stage-builds type = push AND tag IS present
152
+ branch = master && type != pull_request
153
+ branch = master && type != pull_request && type != tag
154
+ branch = master - ECS_CLUSTER_NAME=prod-datascience - TARGET_GROUP_ARN=arn:aws:elasticloadbalancing:us-east-1:866983576462:targetgroup/prod-prediction-service/5846507087bf1d1b
155
+ branch = master AND $PEPE IS pepo
156
+ branch = master AND ($PEPE IS pepo)
157
+ branch = master AND (env(PEPE) IS pepo)
158
+ branch = master AND (type IN pull_request)
159
+ branch = master AND type IN (push) AND tag IS present AND sender IS rit-bikeshare-travis
160
+ branch = master AND type IS push
161
+ branch = master AND type IS push AND tag !~ ^v
162
+ branch = master AND type IS push AND tag NOT blank
163
+ branch = master AND type NON IN (pull_request)
164
+ branch = master AND type NOT pull_request
165
+ branch = master NOT type = pull_request
166
+ branch = master OR env(RUN_QA) IS present OR env(TRAVIS_COMMIT_MESSAGE) =~ ^\[test qa\]
167
+ branch = master OR tag =~ env(SEMVER_REGEX)
168
+ branch = master OR type IS pull-request
169
+ branch = master firebase deploy --only hosting --token="$FIREBASE_PUBLISHING_TOKEN"
170
+ branch = master gcloud app deploy
171
+ branch = master or branch !=~ ^renovate/
172
+ branch = master || branch = code-freeze-2017
173
+ branch = master || branch = emergent_qa
174
+ branch = master, /^(?i:epic)/major.*$/, /^(?i:epic)/feature.*$/, /^(?i:epic)/bugfix.*$/
175
+ branch = master; then firebase deploy --only hosting --token="$FIREBASE_PUBLISHING_TOKEN"
176
+ branch = master; then firebase deploy --only hosting --token="$FIREBASE_PUBLISHING_TOKEN"; fi
177
+ branch = release-staging type = push AND tag IS present
178
+ branch = stable - docker-compose build
179
+ branch = type IN (pull_request)
180
+ branch = unstable - docker-compose build
181
+ branch =~ (\bmaster\b|archiidev\/issue#[0-9]+(\/.*)?)
182
+ branch =~ (\bmaster\b|release\/.*|archiidev\/issue#[0-9]+(\/.*)?)
183
+ branch =~ (^release$ OR ^release-(\d).(\d).(\d)$)
184
+ branch =~ (^release.*)|(^master)
185
+ branch =~ ^(staging_|master)
186
+ branch =~ ^master AND ["$TRAVIS_PULL_REQUEST" = "false"]
187
+ branch =~ ^master AND [[$TRAVIS_PULL_REQUEST == 'false']]
188
+ branch =~ ^master$ && $TRAVIS_PULL_REQUEST == "false"
189
+ branch =~ ^master$ && TRAVIS_PULL_REQUEST == "false"
190
+ branch =~ ^master$ && pull_request == "false"
191
+ branch =~ ^staging*$ && $TRAVIS_PULL_REQUEST == "false"
192
+ branch =~ ^staging*$ && TRAVIS_PULL_REQUEST == "false"
193
+ branch =~ ^test- OR type IN pull_request
194
+ branch IN ("raees/travisFix", master, alpha, staging, prod) AND ((NOT env(FRONTEND_FILES_CHANGED IS blank) OR (NOT env(SENSITIVE_FILES_CHANGED) IS blank))
195
+ branch IN (dev, acc, stage, prod) AND
196
+ branch IN (master) AND type NOT pull_request
197
+ branch IN (master, develop, feature/travis_deploy) env(PROJECT_ID) IN (bar1, baz2, gaz3)
198
+ branch IN (qa, staging production)
199
+ branch IN (v.0.9.2.1, master) echo branch echo head_branch
200
+ branch IN *appstore
201
+ branch IN *hockeyapp
202
+ branch IN master AND type = push
203
+ branch IS master
204
+ branch IS master AND (env(rebuild-ios) = true OR tag = Rebuild ios)
205
+ branch IS master AND tag = Rebuild ios
206
+ branch IS master AND tag IS blank
207
+ branch IS master AND type NOT api AND tag IS blank
208
+ branch IS prod
209
+ branch IS release
210
+ branch IS unstable - docker-compose build
211
+ branch NOT (IN ("raees/settingsPage", master))
212
+ branch NOT (IN (master, alpha, staging, prod))
213
+ branch NOT (IN (raees/settingsPage, master))
214
+ branch NOT master
215
+ branch is master
216
+ branch is master and tag is prod
217
+ branch=master AND tag=Rebuild ios
218
+ env($TRAVIS_TAG) =
219
+ env(COMMIT_MESSAGE) =~ *\[maven-release-plugin\] prepare release*
220
+ env(COVERITY_SCAN_TOKEN) IS present branch = master and head_branch = develop
221
+ env(FORCE_JOBS) IS blank && (branch = ${MASTER_BRANCH} OR type = pull_request)
222
+ env(GH_TOKEN) NOT present
223
+ env(PEPE) IS pepo
224
+ env(PRE_COMMIT_MESSAGE) =~ build-ios type = push
225
+ env(PRIOR_VERSION) != "1.00
226
+ env(PRIOR_VERSION) IS "1.00"
227
+ env(SERVICE) NOT "lint"
228
+ env(SERVICE) is not lint
229
+ env(SERVICE) not lint
230
+ env(TEST_TYPE) IN build
231
+ env(TRAVIS_COMMIT_MESSAGE) != Deploy AdguardTeam/FiltersRegistry to github.com/AdguardTeam/FiltersRegistry.git:test
232
+ env(TRAVIS_COMMIT_MESSAGE) !=~ backend
233
+ env(TRAVIS_COMMIT_MESSAGE) !~ "no docs"
234
+ env(TRAVIS_COMMIT_MESSAGE) -~ "no docs"
235
+ env(TRAVIS_COMMIT_MESSAGE) = Replace a
236
+ env(TRAVIS_COMMIT_MESSAGE) = Replace conditional
237
+ env(TRAVIS_COMMIT_MESSAGE) = Replace conditionala
238
+ env(TRAVIS_COMMIT_MESSAGE) = Replace conditionalasdasdas
239
+ env(TRAVIS_COMMIT_MESSAGE) = Replace\ a
240
+ env(TRAVIS_COMMIT_MESSAGE) =~ 'expensive tests'
241
+ env(TRAVIS_COMMIT_MESSAGE) =~ 'expensive testsx'
242
+ env(TRAVIS_COMMIT_MESSAGE) =~ 'osx tests'
243
+ env(TRAVIS_COMMIT_MESSAGE) =~ *\[maven-release-plugin\] prepare release*
244
+ env(TRAVIS_COMMIT_MESSAGE) =~ \[build pkg.*\]
245
+ env(TRAVIS_COMMIT_MESSAGE) =~ ^((?!\[build pkg\]).)*$ AND (NOT tag =~ ^(?!$)(?:v[0-9]+\.[0-9]+\.[0-9]+_?[^\W]*)?$)
246
+ env(TRAVIS_COMMIT_MESSAGE) =~ ^((?!\[tests skip\]).)*$
247
+ env(TRAVIS_COMMIT_MESSAGE) =~ ^Replace Conditionalaaa$
248
+ env(TRAVIS_COMMIT_MESSAGE) =~ ^\[test qa\]
249
+ env(TRAVIS_COMMIT_MESSAGE) =~ expensive tests
250
+ env(TRAVIS_COMMIT_MESSAGE) IN (Replace Conditional)
251
+ env(TRAVIS_COMMIT_MESSAGE) IN (Replace Conditionalaaa)
252
+ env(TRAVIS_COMMIT_MESSAGE) ~= ^(?!AUTO-CREATED)
253
+ env(TRAVIS_OS_NAME) = 'linux' && env(DIST_NAME) = 'ubuntu' && env(DIST_VERSION) = 'xenial' && env(CC) = 'gcc' && env(MAKE_TARGET) =~ 'deb' && env(DEPLOY_PACKAGE) = 'true'
254
+ env(TRAVIS_PULL_REQUEST_BRANCH) IS blank AND (branch = master OR tag =~ env(SEMVER_REGEX))
255
+ env(TRAVIS_TAG) =
256
+ env(TRAVIS_TAG) NOT present
257
+ env.global(TAG_BRANCH) = build-with-stages AND env(TRAVIS_TAG) != ""
258
+ env.global(TAG_BRANCH) = build-with-stages AND env(TRAVIS_TAG) != build-with-stages
259
+ env.global(TAG_BRANCH) = build-with-stages AND env(TRAVIS_TAG) =~ \d+
260
+ env.global(TAG_BRANCH) = build-with-stages AND env(TRAVIS_TAG) IS present
261
+ env.global(TAG_BRANCH) = build-with-stages AND tag IS present
262
+ env.matrix(TEST_TYPE) = build
263
+ env.matrix(TEST_TYPE) IN (small, medium, large)
264
+ fork IS (true)
265
+ head_branch =~ ^release.* || branch =~ ^release.*
266
+ head_branch =~ ^release/.* || branch =~ ^release/.*
267
+ head_branch NOT present
268
+ head_repo = boostorg/uuid && head_branch = master
269
+ is deploy tag
270
+ master AND ((env(rebuild-android) = true OR tag = Rebuild android) OR (env(rebuild-ios) = true OR tag = Rebuild ios))
271
+ master AND (env(rebuild-android) = true OR tag = Rebuild android) OR (env(rebuild-ios) = true OR tag = Rebuild ios)
272
+ repo = 'sociomantic-tsunami/libdrizzle-redux' AND branch = =~ ^v[0-9]+\.x\.x$
273
+ repo = 'sociomantic-tsunami/libdrizzle-redux' AND tag = =~ ^v[0-9]+\.x\.x$
274
+ repo IS 2m/sssio
275
+ repo IS conda-forge/staged-recipes
276
+ repo IS gmr/consulate
277
+ repo IS gmr/flatdict
278
+ repo IS gmr/rejected
279
+ sender != Deployment Bot (from Travis CI)
280
+ sender =~ "Raghu Simha"
281
+ sender IS rit-bikeshare-travis AND tag IS present
282
+ tag != ^v\d+\.\d+(\.\d+)?(-\S*)?$
283
+ tag !=~ "-fdroid$"
284
+ tag =! ^v
285
+ tag =~ ^v\d+$ AND branch = master AND type NOT pull_request
286
+ tag =~ tag =~ ^v?([0-9])*\.[0-9]*\.[0-9]*-\w+$
287
+ tag IS exist
288
+ tag IS pesent
289
+ tag IS present && tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+ && $BINTRAY_USER != '' && $BINTRAY_KEY != ''
290
+ tag IS present AND tag !=~ "-fdroid$"
291
+ tag IS present AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+ $BINTRAY_USER != '' AND $BINTRAY_KEY != ''
292
+ tag IS present AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+ AND
293
+ tag IS present OR ( branch = master TRAVIS_EVENT_TYPE != pull_request )
294
+ tag IS present OR type IS api
295
+ tag IS present mvn clean package
296
+ tag IS presents
297
+ tag NOT blank
298
+ tag NOT present
299
+ test $BUILD_DPDK = 0 AND type != pull_request
300
+ test $BUILD_DPDK = 0 AND type = pull_request
301
+ true || "$TRAVIS_PULL_REQUEST" == "false" && "$TRAVIS_BRANCH" == "master" && "$DO_RELEASE" == "true"
302
+ type != pull_request AND (branch = master OR tag =~ env(SEMVER_REGEX))
303
+ type != pull_request and branch ~= ^(v1\.\d\.x|master)
304
+ type = (api OR push) AND branch = master
305
+ type = (pull_request)
306
+ type = (push OR api) AND branch = master
307
+ type = pull_request OR env(PRE_COMMIT_MESSAGE) =~ build-android OR env(PRE_COMMIT_MESSAGE)# =~ build-mobile
308
+ type = pull_request OR env(PRE_COMMIT_MESSAGE)# =~ build-(android|mobile)
309
+ type = pull_request OR env(PRE_COMMIT_MESSAGE)# =~ build-web
310
+ type = push - ./phpunit.sh -c phpunit.xml -g App
311
+ type = push - TOX_ENV=py35-functional-batch1
312
+ type = push AND (env(PRE_COMMIT_MESSAGE)# =~ build-ios OR env(PRE_COMMIT_MESSAGE)# =~ build-mobile)
313
+ type = push AND (tag =~ ^v8 OR branch IN (master, neon, argon)
314
+ type = push AND env(PEPE) IS pepo
315
+ type = push AND env(PRE_COMMIT_MESSAGE)# =~ build-(ios|mobile)
316
+ type = push AND env(PRE_COMMIT_MESSAGE)# =~ build-ios
317
+ type = tag IS present
318
+ type IN (push pull_request)
319
+ type IN (push) - yarn run build; - yarn run deploy;
320
+ type IN (push) AND (NOT IN (pull_request) OR branch IN (master, development))
321
+ type IN pull_request
322
+ type IN pull_request OR ((type IN (push)) AND branch != develop)
323
+ type IN pull_request OR ((type IN push AND) branch != develop)
324
+ type IN pull_request OR ((type IN push) AND branch != develop)
325
+ type IN pull_request OR (type IN push AND branch != develop)
326
+ type IN push
327
+ type IS NOT pull_request
328
+ type IS cron
329
+ type IS cron OR branch IS feat-optimize-travis
330
+ type IS pull_request
331
+ type IS push
332
+ type NOT (pull_request)
333
+ type NOT (push, pull_request)
334
+ type NOT IN cron
335
+ type NOT IN pull
336
+ type NOT IN pull_request
337
+ type NOT IS pull_request
338
+ type NOT pull_request
339
+ type NOT pull_request AND branch IN (master)
340
+ type NOT pull_request AND head_branch =~ ^release.*
341
+ type branch IN(master)
342
+ type is push
@@ -0,0 +1,1685 @@
1
+ $BRANCH = dev
2
+ $BRANCH = master
3
+ $COMMIT_MSG =~ frontend
4
+ $COVERALLS_REPO_TOKEN != '' AND branch =~ ^v[0-9]+\.x\.x$
5
+ $COVERALLS_REPO_TOKEN != '' AND branch =~ ^v[0-9]+\.x\.x$ AND repo = 'sociomantic-tsunami/libdrizzle-redux'
6
+ $DEPLOYMENT_REQUIRED = true
7
+ $DEPLOY_DASHBOARD = true
8
+ $DEPLOY_STAGE_CONDITION
9
+ $DEPLOY_STAGE_CONDITION AND tag IS present AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+
10
+ $DEPLOY_VOLUNTEER = true
11
+ $DOCKER = docker
12
+ $SKIP_BROWSERSTACK != true
13
+ $TAG_ENABLE = True
14
+ $TAG_ENABLE == "True"
15
+ $TAG_ENABLE == True
16
+ $TAG_ENABLE="True"
17
+ $TRAVIS_BRANCH != "rival_stage"
18
+ $TRAVIS_BRANCH != $SMOKE_BRANCH
19
+ $TRAVIS_BRANCH = "rival_stage"
20
+ $TRAVIS_BRANCH = $SMOKE_BRANCH
21
+ $TRAVIS_BRANCH = master
22
+ $TRAVIS_BRANCH = release
23
+ $TRAVIS_BRANCH =~ ^deploy/.*$
24
+ $TRAVIS_COMMIT_MESSAGE = 'Deploy'
25
+ $TRAVIS_COMMIT_MESSAGE = 'Remove conditional'
26
+ $TRAVIS_COMMIT_MESSAGE = 'as conditional'
27
+ $TRAVIS_COMMIT_MESSAGE =~ frontend
28
+ $TRAVIS_OS_NAME = "linux" AND $DIST_NAME = "centos" AND $DIST_VERSION = "7"
29
+ $TRAVIS_OS_NAME = "linux" AND $DIST_NAME = "centos" AND $DIST_VERSION = '7'
30
+ $TRAVIS_OS_NAME = "linux" AND env(DIST_NAME) = "centos" AND env(DIST_VERSION) = '7'
31
+ $TRAVIS_OS_NAME = 'linux' AND env(DIST_NAME) = 'centos' AND env(DIST_VERSION) = '7'
32
+ $TRAVIS_OS_NAME = 'linux' AND env(DIST_NAME) = 'ubuntu' AND env(DIST_VERSION) = 'xenial'
33
+ $TRAVIS_OS_NAME = 'linux' AND env(DIST_NAME) = 'ubuntu' AND env(DIST_VERSION) = 'xenial' AND tag IS present AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+
34
+ $TRAVIS_OS_NAME = linux AND env(DIST_NAME) = centos AND env(DIST_VERSION) = 7
35
+ $TRAVIS_OS_NAME=linux AND env(DIST_NAME)=ubuntu AND env(DIST_VERSION)=xenial AND tag IS present AND tag=~^v[0-9]+\.[0-9]+\.[0-9]+
36
+ $TRAVIS_PULL_REQUEST != "false"
37
+ $TRAVIS_PULL_REQUEST = "false"
38
+ $TRAVIS_PULL_REQUEST == "false"
39
+ $TRAVIS_PULL_REQUEST == false
40
+ $TRAVIS_PULL_REQUEST IS false
41
+ $TRAVIS_PULL_REQUEST="false"
42
+ $TRAVIS_PULL_REQUEST_BRANCH =~ *./minor/.*
43
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/.*
44
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/major/.*
45
+ $TRAVIS_PULL_REQUEST_BRANCH =~ ^release/minor/.*
46
+ $TRAVIS_TAG = *dev*
47
+ $TRAVIS_TAG =~ ^*-macos$
48
+ $WITH_OSX == y
49
+ $changes = 1
50
+ $my_var=notdemo
51
+ ${DEBUG_JOB_CONDITION}
52
+ ${RELEASE_JOB_CONDITION}
53
+ ${SLACK_CHANNEL != null}
54
+ ${jobs} =~ /PORTAL/
55
+ ( (type = pull_request AND branch != master) ) OR ( (branch = master) AND (tag IS present) )
56
+ ( NOT (tag IS present)) AND (branch = master) AND (type != pull_request)
57
+ ( NOT (tag IS present)) AND (branch = travis-stages) AND (type != pull_request)
58
+ ( NOT type = pull_request ) AND ( branch = master OR branch =~ ^[0-9]\.[0-9]$ )
59
+ ( NOT type = pull_request ) AND ( branch = master OR branch =~ ^[0-9]\.[0-9]$ ) AND repo = camptocamp/c2cgeoportal
60
+ ( NOT type = pull_request ) AND repo = camptocamp/c2cgeoportal
61
+ ( branch = master OR branch =~ ^release-(\d).(\d).(\d)$ )
62
+ ( branch = master OR branch ~= ^[0-9]\.[0-9]$ )
63
+ ( branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$ )
64
+ ( branch =~ extraci ) OR (repo = percona/percona-server) AND (type = push)
65
+ ( env($TAG_ENABLE)=True ) AND ( env($BUILD_TYPE) IN (patch, minor, major ) )
66
+ ( env($TAG_ENABLE)=True ) AND ( env($BUILD_TYPE) IN (patch, minor, major ) ) AND branch IN (master, VER3-252_buildProcess)
67
+ ( env($TAG_ENABLE)=True ) AND ( env($BUILD_TYPE) IN (patch, minor, major ) ) AND branch IN (master, VER3-252_buildProcess) AND env($DEPLOY) = True
68
+ ( env($TAG_ENABLE)=True ) AND ( env($BUILD_TYPE) IN (patch, minor, major) )
69
+ ( repo = lifeonairteam/stella )
70
+ ($TRAVIS_BRANCH = "hotfix") OR (($TRAVIS_BRANCH = "master") AND (NOT ($TRAVIS_TAG = NULL OR $TRAVIS_TAG = "")))
71
+ ($TRAVIS_BRANCH = master AND NOT env(RELEASE_ENVIRONMENT) IS present)
72
+ (( branch = master OR branch =~ ^rough.$ ) AND ( repo = lifeonairteam/stella ))
73
+ (($AUTHOR_NAME != 'Travis CI User') AND (branch = travisdeploy))
74
+ (((type != pull_request) AND (branch = master)) OR (tag =~ ^\d+\.\d+\.\d+$))
75
+ ((NOT branch =~ ^develop/.*$) OR (branch = develop/travis)) AND (tag IS blank)
76
+ ((branch != master AND branch != integration/develop) OR type = cron OR type = api)
77
+ ((branch = master AND type IN (push, pull_request)) OR branch = Docs)
78
+ ((branch = master) AND (type IN (push)))
79
+ ((branch = master) OR (tag =~ ^\d+\.\d+\.\d+$))
80
+ ((repo = boostorg/date_time) AND (branch IN (develop, master)) AND (type IN (cron, push))) OR ((repo = jeking3/date_time) AND (branch = develop) AND (type = pull_request))
81
+ ((repo = percona/percona-server) AND (type = push)) OR ( branch =~ extraci )
82
+ ((repo = percona/percona-server) AND (type = push)) OR (branch =~ ^inverted$)
83
+ ((repo = percona/percona-server) AND (type = push)) OR (branch =~ exptraci)
84
+ ((repo = percona/percona-server) AND (type = push)) OR (branch =~ inverted)
85
+ ((repo = percona/percona-server) AND (type = push)) OR branch =~ extraci
86
+ ((repo = percona/percona-server) AND (type = push)) OR branch =~ release
87
+ ((sender != 'Travis CI User') AND (branch = travisdeploy))
88
+ ((tag =~ \d\.\d\.\d) OR (branch = travis-stages)) AND (type != pull_request)
89
+ ((tag IS present) OR (branch = master)) AND (type != pull_request)
90
+ ((tag IS present) OR (branch = travis-stages)) AND (type != pull_request)
91
+ ((type != pull_request) AND (branch = master)) OR (tag =~ ^\d+\.\d+\.\d+$)
92
+ ((type = pull_request) and (branch =~ ^greenkeeper\/.*-.*$))
93
+ ((type = push) AND (branch = master)) OR type = pull_request
94
+ ((type IN (api, pull_request, push) AND branch IN (master)) OR (tag =~ ^\d+\.\d+\.\d+$))
95
+ ((type IN (api, push) AND branch IN (master)) OR (tag =~ ^\d+\.\d+\.\d+$))
96
+ (NOT (branch = master)) AND (type IN (push, pull-request))
97
+ (NOT (env(AUTHOR_NAME) =~ ^Travis$) AND (branch = travisdeploy))
98
+ (NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")) AND NOT (branch IN (master, dev))
99
+ (NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")) AND NOT branch IN (master, dev)
100
+ (NOT (tag ~= ^v[0-9]))
101
+ (NOT branch = develop) AND (type IN (push, pull_request))
102
+ (NOT branch = master)
103
+ (NOT branch = master) AND (type IN (push, pull_request))
104
+ (NOT branch = master) AND type IN (push)
105
+ (NOT branch = master) AND type IN (push, pull_request)
106
+ (NOT branch =~ ^develop/.*$) AND (tag IS blank)
107
+ (NOT branch IN (master, alpha, staging, prod)) AND (NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = ""))
108
+ (NOT branch IN (master, alpha, staging, prod)) AND (env(FRONTEND_FILES_CHANGED) IS blank AND env(ANY_SERVICES_FILES_CHANGED) IS blank)
109
+ (NOT branch IN (master, alpha, staging, prod)) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
110
+ (NOT branch IN (master, alpha, staging, prod)) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")
111
+ (NOT branch IN (master, alpha, staging, prod)) AND NOT (env(FRONTEND_FILES_CHANGED) = "")
112
+ (NOT env(AUTHOR_NAME) =~ ^Travis AND (branch = development))
113
+ (NOT env(AUTHOR_NAME) =~ ^Travis AND (branch = travisdeploy))
114
+ (NOT env(AUTHOR_NAME) =~ ^Travis$ AND (branch = travisdeploy))
115
+ (NOT env(FRONTEND_FILES_CHANGED) = "") AND (NOT env(ANY_SERVICES_FILES_CHANGED) = "") AND (NOT env(SENSITIVE_FILES_CHANGED) = "")
116
+ (NOT env(FRONTEND_FILES_CHANGED) = "") OR (NOT env(ANY_SERVICES_FILES_CHANGED) = "") OR (NOT env(SENSITIVE_FILES_CHANGED) = "")
117
+ (NOT env(FRONTEND_FILES_CHANGED) IS blank OR env(ANY_SERVICES_FILES_CHANGED) IS blank OR env(SENSITIVE_FILES_CHANGED) IS blank)
118
+ (NOT fork) AND (type NOT IN (pull_request))
119
+ (NOT repo =~ ^vscode-icons OR (branch != master AND NOT tag IS present) OR type = pull_request) AND NOT env(VSI_TAG) IS present
120
+ (NOT repo =~ ^vscode-icons OR branch != master OR type = pull_request) AND NOT env(VSI_TAG) IS present AND NOT tag IS present
121
+ (NOT tag IS present)
122
+ (NOT tag IS present) AND (NOT branch = master) AND (type = push)
123
+ (NOT tag IS present) OR (tag =~ ^*-linux$)
124
+ (NOT tag IS present) OR (tag ~= ^*-linux$)
125
+ (NOT tag IS present) OR (tag ~= ^*-linux)
126
+ (NOT tag ~= ^v[0-9])
127
+ (NOT tag ~= ^v[0-9]) AND (NOT tag =~ ^[0-9])
128
+ (NOT type = pull_request)
129
+ (NOT type = pull_request) AND (branch = master OR branch =~ ^[0-9]\.[0-9]$)
130
+ (NOT type = pull_request) AND (branch = master OR branch =~ ^[0-9]\.[0-9]$) AND repo = camptocamp/c2cgeoportal
131
+ (NOT type = pull_request) AND (branch = master OR branch ~= ^[0-9]\.[0-9]$)
132
+ (NOT type = pull_request) AND (branch = master OR branch ~= ^[0-9]\.[0-9]$) AND repo = camptocamp/c2cgeoportal
133
+ (NOT type = pull_request) AND branch = master
134
+ (NOT type = pull_request) AND repo = camptocamp/c2cgeoportal
135
+ (NOT type IN (pull_request) AND (branch = travistag))
136
+ (NOT type IN (pull_request) OR (type in (pull_request) AND (head_branch == not_a_real_branch)))
137
+ (NOT type IN (pull_request)) AND (branch = master)
138
+ (NOT type IN (pull_request)) AND (branch = master) OR (tag IS present)
139
+ (NOT type IN (pull_request)) AND (repo = isuruf/staged-recipes)
140
+ (branch != development AND branch != master) OR type = pull
141
+ (branch != master AND NOT tag IS present) OR type = pull_request OR NOT repo =~ ^vscode-icons
142
+ (branch != master AND branch != development)
143
+ (branch != master AND tag IS blank) OR (type IN (pull_request))
144
+ (branch != master OR branch != run-visual-test-with-cron-job) OR type = cron
145
+ (branch != master OR type = cron OR type = api)
146
+ (branch != master OR type = cron)
147
+ (branch != master)
148
+ (branch != run-visual-test-with-cron-job OR type = cron)
149
+ (branch = acc) AND (fork = false)
150
+ (branch = deploy) AND ((env(TRAVIS_PULL_REQUEST) = false) OR (env(TRAVIS_PULL_REQUEST) IS blank))
151
+ (branch = deploy) AND NOT(type = pull_request)
152
+ (branch = develop) AND (NOT (type = pull_request))
153
+ (branch = develop) AND (NOT pull_request)
154
+ (branch = develop) AND (NOT(type IN (push, pull_request)))
155
+ (branch = develop) AND (type != pull_request)
156
+ (branch = develop) AND type IN (push)
157
+ (branch = develop/travis) AND (tag IS blank)
158
+ (branch = development) AND (NOT (type IN (pull_request)))
159
+ (branch = development) OR (branch =~ ^release/)
160
+ (branch = development) OR (branch =~ ^release/) OR (tag is present)
161
+ (branch = master AND NOT env(RELEASE_ENVIRONMENT) IS present)
162
+ (branch = master AND NOT type = pull_request) OR env(TRAVIS_TAG) IS NOT blank
163
+ (branch = master AND NOT type = pull_request) OR env(TRAVIS_TAG) IS present
164
+ (branch = master AND NOT type = pull_request) OR tag =~ ^v?([0-9]*)\.([0-9]*)\.([0-9]*)$
165
+ (branch = master AND NOT type = pull_request) OR tag IS NOT blank
166
+ (branch = master AND NOT type = pull_request) OR tag IS present
167
+ (branch = master AND env(RELEASE_ENVIRONMENT) NOT IN (production, staging, development))
168
+ (branch = master AND type = push)
169
+ (branch = master AND type = push) AND env(PEPA) IS NOT present
170
+ (branch = master AND type = push) AND env(PEPA) IS blank
171
+ (branch = master AND type = push) AND env(PEPE) IS blank
172
+ (branch = master AND type = push) OR (NOT type = push)
173
+ (branch = master AND type = push) OR (NOT type = push) OR (head_branch == feature/roger-ai)
174
+ (branch = master AND type = push) OR (NOT type = push) or (head_branch = weight-and-kubernetes)
175
+ (branch = master AND type = push) OR (branch = staging AND type = push) OR (NOT type = push)
176
+ (branch = master AND type = push) OR (head_branch = feature/k8s-travis)
177
+ (branch = master AND type = push) OR (head_branch = feature/roger-ai)
178
+ (branch = master AND type = push) OR (head_branch = travis-ci AND type = pull_request)
179
+ (branch = master AND type = push) OR (type = pull_request AND head_branch = travis-ci)
180
+ (branch = master AND type = push) OR (type = pull_request)
181
+ (branch = master AND type = push) OR type in ( pull_request, cron, api )
182
+ (branch = master AND type = push) or (head_branch = "feature/PLEO-2026/weights-and-scores")
183
+ (branch = master AND type = push) or (head_branch = "feature/PLEO-2026/weights-and-scores") or (branch = "feature/PLEO-2026/weights-and-scores" AND type = push)
184
+ (branch = master AND type = push) or (head_branch = travis-ci)
185
+ (branch = master AND type = push) or (head_branch = updateTrustlyClient)
186
+ (branch = master AND type = push) or (head_branch = weight-and-kubernetes)
187
+ (branch = master AND type IN (push, pull_request))
188
+ (branch = master OR branch = dev OR branch = breaking-up-builds) AND type = push
189
+ (branch = master OR branch = dev) AND type = push
190
+ (branch = master OR branch = development)
191
+ (branch = master OR branch = v3) AND (NOT type in (pull_request))
192
+ (branch = master OR branch = v4) AND (NOT type in (pull_request))
193
+ (branch = master OR branch =~ ^[0-9]\.[0-9]$)
194
+ (branch = master OR branch =~ ^release) AND type = pull_request
195
+ (branch = master OR branch ~= ^[0-9]\.[0-9]$)
196
+ (branch = master OR tag IS present)
197
+ (branch = master OR tag IS present) AND type = push
198
+ (branch = master)
199
+ (branch = master) AND (NOT (tag =~prod_))
200
+ (branch = master) AND (NOT (type = pull_request))
201
+ (branch = master) AND (NOT (type IN (api, pull_request)))
202
+ (branch = master) AND (NOT (type IN (api,pull_request)))
203
+ (branch = master) AND (NOT (type IN (pull_request)))
204
+ (branch = master) AND (NOT tag =~ ^\d+\.\d+\.\d+$)
205
+ (branch = master) AND (NOT(type IN (api, pull_request)))
206
+ (branch = master) AND (NOT(type IN (api,pull_request)))
207
+ (branch = master) AND (NOT(type IN (push ,pull_request)))
208
+ (branch = master) AND (NOT(type IN (push, pull_request)))
209
+ (branch = master) AND (NOT(type IN (push,pull_request)))
210
+ (branch = master) AND (env(TRAVIS_PULL_REQUEST) != false)
211
+ (branch = master) AND (env(TRAVIS_TAG) IS blank)
212
+ (branch = master) AND (pull_request IS false)
213
+ (branch = master) AND (tag =~ ^\d+\.\d+\.\d+$)
214
+ (branch = master) AND (tag IS blank)
215
+ (branch = master) AND (type != pull_request)
216
+ (branch = master) AND (type = push)
217
+ (branch = master) AND (type = push) AND (sender = pmario)
218
+ (branch = master) AND (type IN (push))
219
+ (branch = master) AND (type IN (push, api, cron))
220
+ (branch = master) AND NOT (type = pull_request)
221
+ (branch = master) AND env(TRAVIS_TAG) IS blank
222
+ (branch = master) AND type IN (push)
223
+ (branch = master) OR (branch = develop) OR (branch =~ ^release\/.*$) OR (branch =~ ^hotfix\/.*$) OR (branch =~ ^bugfix\/.*$) OR (branch =~ ^support\/.*$) OR (tag IS present)
224
+ (branch = master) OR (branch = develop) OR (branch =~ ^release\/.*$) OR (branch =~ ^hotfix\/.*$) OR (branch =~ ^bugfix\/.*$) OR (branch =~ ^support\/.*$) OR (tag IS present) OR (type IN (pull_request, api))
225
+ (branch = master) OR (branch =~ ^enterprise-)
226
+ (branch = master) OR (branch =~ ^release/) OR (tag IS present)
227
+ (branch = master) OR (branch =~ ^release/) OR (tag is present)
228
+ (branch = master) OR (branch =~ ^release\/.*) OR (tag IS present)
229
+ (branch = master) OR (branch =~ release/.*) OR (tag IS present)
230
+ (branch = master) OR (branch =~ release/.*) OR tag IS present
231
+ (branch = master) OR (tag =~ ^\d+\.\d+\.\d+$)
232
+ (branch = master) OR (tag IS present)
233
+ (branch = master) OR (type = pull_request)
234
+ (branch = master) and (type = pull_request)
235
+ (branch = release OR branch =~ ^release-(\d).(\d).(\d)$) AND type IN (push)
236
+ (branch = sign-it) AND (type = push) AND (sender = pmario)
237
+ (branch = stable) and (not type in (pull_request, cron))
238
+ (branch = stable) and (type = pull_request)
239
+ (branch = staging AND type = push)
240
+ (branch = task/TDB-57)
241
+ (branch = travis-publish) OR (tag =~ ^\d+\.\d+\.\d+$)
242
+ (branch = travis-stages)
243
+ (branch = travis-stages) AND (type != pull_request)
244
+ (branch =~ ^[0-9]\.[0-9]$)
245
+ (branch =~ ^develop/travis/.*$) OR (NOT branch =~ ^develop/.*$)
246
+ (branch =~ ^foo$ OR branch =~ ^foo-(\d).(\d).(\d)$)
247
+ (branch =~ ^inverted$) OR ((repo = percona/percona-server) AND (type = push))
248
+ (branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$) AND type != pull_request
249
+ (branch =~ ^release$) OR ((repo = percona/percona-server) AND (type = pull_request))
250
+ (branch =~ ^release\/) OR (branch = develop) OR tag IS present
251
+ (branch =~ exptraci) OR (repo = percona/percona-server) AND (type = push)
252
+ (branch =~ extraci OR repo = percona/percona-server) AND (type = push)
253
+ (branch =~ inverted) OR ((repo = percona/percona-server) AND (type = pull_request))
254
+ (branch =~ pulumi/.*)
255
+ (branch =~ release) OR ((repo = percona/percona-server) AND (type = pull_request))
256
+ (branch IN (develop, master)) AND (type IN (cron, push))
257
+ (branch IN (develop, master)) AND (type NOT IN (pull_request))
258
+ (branch IN (master)) AND (tag =~ ^v OR (type in (push, cron)))
259
+ (branch IN (master)) AND (type IN (push, pull_request))
260
+ (branch IN (master, Staging, Stable) AND type = push) OR (type = pull_request)
261
+ (branch IN (master, bulk)) OR (type = pull_request) OR (fork = true)
262
+ (branch IN (master, bulk)) OR (type = pull_request) OR (repo != bioconda/bioconda-recipes)
263
+ (branch IN (master, staging) AND type = push) OR type in ( pull_request, cron )
264
+ (branch in (staging,travisk8s) AND type = push)
265
+ (env(APP_CARRIER) = ANTHEM_BLUE_CROSS) AND (branch = develop)
266
+ (env(ASD) IS blank) OR (type IN (pull_request))
267
+ (env(FRONTEND_FILES_CHANGED) != "" OR env(ANY_SERVICES_FILES_CHANGED) != "" OR env(SENSITIVE_FILES_CHANGED) != "" OR env(TRAVIS_CONFIG_CHANGED) != "")
268
+ (env(FRONTEND_FILES_CHANGED) != "" OR env(ANY_SERVICES_FILES_CHANGED) != "" OR env(SENSITIVE_FILES_CHANGED) != "" OR env(TRAVIS_CONFIG_CHANGED) != "") AND (NOT branch IN(master, alpha, staging, prod))
269
+ (env(GH_TOKEN) IS blank) OR (type IN (pull_request))
270
+ (env(TRAVIS_TAG) IS present) AND (NOT (tag =~ \btest\b))
271
+ (fork = false) AND (NOT (type IN (pull_request)))
272
+ (fork IN (false)) AND (NOT (type IN (pull_request)))
273
+ (fork IN (true)) OR (type IN (pull_request))
274
+ (repo != conda-forge/staged-recipes) OR (type IN (pull_request))
275
+ (repo != isuruf/staged-recipes) OR (type IN (pull_request))
276
+ (repo != percona/percona-server)
277
+ (repo != percona/percona-server) OR ((repo = percona/percona-server) AND (type = push))
278
+ (repo = isuruf/staged-recipes) AND (type IN (pull_request))
279
+ (repo = okramlabs/okramlabs.github.src) AND (type = push) AND (branch = master) AND (NOT tag IS present)
280
+ (repo = okramlabs/okramlabs.github.src) AND (type = push) AND (tag IS present)
281
+ (tag =~ \d\.\d\.\d)
282
+ (tag =~ \d\.\d\.\d) AND (branch = travis-stages) AND (type != pull_request)
283
+ (tag =~ ^*-macos$)
284
+ (tag =~ ^prod_)
285
+ (tag =~ ^v) AND (branch = master) AND (fork = false) AND (repo = holvonix-open/js-kitchen-sync)
286
+ (tag =~ ^v) AND (branch = master) AND (fork = false) AND (repo = holvonix-open/json2array)
287
+ (tag =~ ^v) AND (branch = master) AND (fork = false) AND (repo = holvonix-open/new-ball)
288
+ (tag =~ ^v) AND (branch = testing)
289
+ (tag =~ ^v1)
290
+ (tag =~ ^v1) AND (branch = master) AND (NOT (type IN (push, pull_request)))
291
+ (tag =~ ^v1) AND (branch = master) AND (NOT(type IN (push, pull_request)))
292
+ (tag =~ ^v1) AND (branch = testing)
293
+ (tag =~ ^v1) AND (branch = testing) AND (type IN (push))
294
+ (tag =~ ^v\d)
295
+ (tag IS present)
296
+ (tag IS present) AND (type != pull_request)
297
+ (tag IS present) OR (branch = master)
298
+ (tag IS present) OR (tag ~= ^*-linux)
299
+ (tag ~= ^*-macos$)
300
+ (tag ~= ^*-macos)
301
+ (tag ~= ^v[0-9])
302
+ (tag) AND (branch = testing) AND (type IN (push))
303
+ (type != cron)
304
+ (type != cron) and (branch != ^greenkeeper\/.*$)
305
+ (type != cron) and (branch = master)
306
+ (type != cron) and (branch =~ ^greenkeeper\/.*$)
307
+ (type != pull_request AND (branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$))
308
+ (type != pull_request AND branch IN (master, develop)) OR branch = working
309
+ (type != pull_request)
310
+ (type != pull_request) AND (NOT tag =~ ^v\d+\.\d+\.\d+$)
311
+ (type != pull_request) AND (branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$)
312
+ (type != pull_request) AND (branch =~ ^release/.*)
313
+ (type != pull_request) AND (branch =~ ^release/major/.*)
314
+ (type != pull_request) AND (branch =~ ^release/minor/.*)
315
+ (type != pull_request) AND (branch =~ ^release/patch/.*)
316
+ (type != pull_request) AND (head_branch =~ ^release/.* OR branch =~ ^release/.*)
317
+ (type != pull_request) AND (head_branch =~ ^release/major/.* OR branch =~ ^release/major/.*)
318
+ (type != pull_request) AND (head_branch =~ ^release/minor/.* OR branch =~ ^release/minor/.*)
319
+ (type != pull_request) AND (head_branch =~ ^release/patch/.* OR branch =~ ^release/patch/.*)
320
+ (type != pull_request) OR (branch =~ ^[\w-.]*__TEST_HDFS__$)
321
+ (type != pull_request) OR (branch =~ __TEST_HDFS__)
322
+ (type != pull_request) OR (head_branch == not_a_real_branch)
323
+ (type != pull_request) OR (head_branch =~ __TEST_HDFS__)
324
+ (type != pull_request) OR (head_branch =~ not-the-branch-name)
325
+ (type != pull_request) OR (type = pull_request AND branch = master)
326
+ (type = api OR type = push) AND branch = master
327
+ (type = cron) AND (branch = master)
328
+ (type = cron) OR (tag IS present)
329
+ (type = pr or branch = master) and (not branch =~ ^docs)
330
+ (type = pr or branch = master) and NOT branch =~ ^docs
331
+ (type = pull_request AND branch = staging) OR (type = push AND branch IN (staging, production))
332
+ (type = pull_request)
333
+ (type = pull_request) OR ((type = push) AND (NOT branch = master))
334
+ (type = pull_request) OR (branch = develop) OR ( (branch = master) AND (tag IS present) )
335
+ (type = pull_request) OR (branch = travis-conditionals-bug)
336
+ (type = pull_request) OR (tag IS present)
337
+ (type = pull_request) OR (tag IS present) OR (branch = master)
338
+ (type = pull_request) and (branch =~ ^greenkeeper\/.*-.*$)
339
+ (type = push AND NOT (branch = develop)) OR (type = cron)
340
+ (type = push)
341
+ (type = push) AND ((branch IN (master, bulk)) OR (fork = true))
342
+ (type = push) AND ((branch IN (master, bulk)) OR (repo != bioconda/bioconda-recipes))
343
+ (type = push) AND ((branch IN (master, bulk)) OR (repo != genouest/conda-training))
344
+ (type = push) AND (NOT branch = master)
345
+ (type = push) AND (branch = master)
346
+ (type = push) AND (branch =~ master)
347
+ (type = push) AND (env(SONAR_TOKEN) IS present)
348
+ (type = push) AND (repo = sass/dart-sass) AND (tag =~ ^\d+\.\d+\.\d+([+-].*)?$)
349
+ (type = push) AND (tag =~ /^v[1-9].[0-9].[0-9]/)
350
+ (type = push) AND (tag =~ ^v1) AND (branch = testing)
351
+ (type = push) AND (tag =~ ^v[0-9].[0-9].[0-9]$)
352
+ (type = push) AND (tag =~ ^v[0-9].[0-9].[0-9]-)
353
+ (type = push) AND (tag IS blank)
354
+ (type == push)
355
+ (type IN (api)) OR (tag = v1.0.0-ci-test-2)
356
+ (type IN (api, pull_request, push) AND branch = master) OR (tag =~ ^.+$)
357
+ (type IN (api, push) AND branch = master)
358
+ (type IN (api, push) AND branch = master) OR (tag =~ ^.+$)
359
+ (type IN (cron, api)) OR ((tag IS present) AND (tag =~ ^v))
360
+ (type IN (cron, api)) OR (tag =~ ^v)
361
+ (type IN (cron, api)) OR (tag =~ ^v?([0-9]+)\.([0-9]+)\.([0-9]+)(?:(?:\-|\+)([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)){0,2}$)
362
+ (type IN (cron, api)) OR (tag IS present)
363
+ (type IN (cron, pull_request)) OR (tag IS present)
364
+ (type IN (pull_request)) AND (branch =~ ^greenkeeper\/.*$)
365
+ (type IN (pull_request)) OR $LAST_COMMIT_MESSAGE =~ ^toto
366
+ (type IN (pull_request)) OR ($IS_NEW_VERSION = yes)
367
+ (type IN (pull_request)) OR ($TRAVIS_COMMIT_MESSAGE = bar)
368
+ (type IN (pull_request)) OR ((type IN (push)) AND branch != develop)
369
+ (type IN (pull_request)) OR (branch IS blank AND $LAST_COMMIT_MESSAGE =~ Update*)
370
+ (type IN (pull_request)) OR (env(IS_COMMIT_UPDATE_VERSION) = 'yes')
371
+ (type IN (pull_request)) OR (env(IS_COMMIT_UPDATE_VERSION) = yes)
372
+ (type IN (pull_request)) OR (env(IS_COMMIT_UPDATE_VERSION) == 'yes')
373
+ (type IN (pull_request)) OR (env(LAST_COMMIT_MESSAGE) =~ ^toto$)
374
+ (type IN (pull_request)) OR (env(TRAVIS_COMMIT_MESSAGE) =~ ^bar$)
375
+ (type IN (pull_request)) OR (env(TRAVIS_COMMIT_MESSAGE) =~ ^toto$)
376
+ (type IN (pull_request)) OR tag IS present
377
+ (type IN (push, api)) AND (repo = sass/dart-sass) AND tag =~ ^\d+\.\d+\.\d+([+-].*)?$
378
+ (type IN (push, api)) AND (tag =~ ^(0|[1-9]\d*)(?:\.(0|[1-9]\d*))?(?:\.(0|[1-9]\d*))?(?:-([\w.-]+))?(?:\+([\w.-]+))?$)
379
+ (type IN (push, pull_request))
380
+ (type in (pull_request)) and (branch =~ ^greenkeeper\/.*$)
381
+ 0
382
+ 0 == 1
383
+ 1
384
+ 1=1
385
+ 1=2
386
+ JOB_TYPE in (app)
387
+ JOB_TYPE in (front_dashboard)
388
+ JOB_TYPE in (front_survey)
389
+ NOT $TRAVIS_COMMIT_MESSAGE =~ backend
390
+ NOT ( env(VERSION) =~ /^pypy/ )
391
+ NOT ( env(VERSION) =~ ^pypy )
392
+ NOT (((env(FRONTEND_FILES_CHANGED) IS blank) AND (env(ANY_SERVICES_FILES_CHANGED) IS blank)) AND (branch IN (master, alpha, staging, prod)))
393
+ NOT ((branch = TestSkipPrBuilds$) AND (type = pull_request))
394
+ NOT ((branch = ^.*TestSkipPrBuilds$) AND (type = pull_request))
395
+ NOT ((branch = ^greenkeeper/.*$) AND (type = pull_request))
396
+ NOT ((branch =~ ^.*TestSkipPrBuilds$) AND (type = pull_request))
397
+ NOT ((env(FRONTEND_FILES_CHANGED) IS blank AND env(ANY_SERVICES_FILES_CHANGED) IS blank AND env(SENSITIVE_FILES_CHANGED) IS blank) AND branch IN (master, alpha, staging, prod))
398
+ NOT ((env(FRONTEND_FILES_CHANGED) IS blank AND env(ANY_SERVICES_FILES_CHANGED) IS blank) AND branch IN (master, alpha, staging, prod))
399
+ NOT (branch = imageproxy)
400
+ NOT (branch = master)
401
+ NOT (branch =~ TestSkipPrBuilds)
402
+ NOT (branch =~ ^bk-.*$)
403
+ NOT (branch =~ ^foobar$)
404
+ NOT (branch =~ imageproxy)
405
+ NOT (branch IN (master, alpha, staging, prod)) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
406
+ NOT (env(FEEDSTOCKS) IN (yes))
407
+ NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "" AND branch IN (master, alpha, staging, prod))
408
+ NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
409
+ NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")
410
+ NOT (env(SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
411
+ NOT (tag IS present)
412
+ NOT (tag ~= ^v[0-9] OR tag =~ ^[0-9])
413
+ NOT (type = cron)
414
+ NOT (type = pull_request)
415
+ NOT (type = pull_request) AND branch = master
416
+ NOT (type = push AND branch = production)
417
+ NOT (type IN (pull_request))
418
+ NOT (type IN (pull_request, api)) AND branch IN (master, develop)
419
+ NOT (type IN (pull_request, cron)) AND branch = master
420
+ NOT branch = master
421
+ NOT branch = master AND type IN (push, pull-request)
422
+ NOT branch = master OR (type = pull_request)
423
+ NOT branch =~ TestSkipPrBuilds OR type = push
424
+ NOT branch =~ ^WIP.*$
425
+ NOT branch =~ ^develop/.*$
426
+ NOT branch =~ ^develop/.*$ OR branch =~ ^develop/travis/.*$
427
+ NOT branch =~ ^staging*$ AND type IN (push, pull_request)
428
+ NOT branch =~ ^staging.*$ AND type IN (push, pull_request)
429
+ NOT branch =~ coverage
430
+ NOT branch IN (master, alpha, staging, prod)
431
+ NOT branch IN (master, alpha, staging, prod) AND (NOT env(FRONTEND_FILES_CHANGED) = "" OR NOT env(ANY_SERVICES_FILES_CHANGED) = "" OR NOT env(SENSITIVE_FILES_CHANGED) = "")
432
+ NOT branch IN (master, alpha, staging, prod) AND (NOT env(FRONTEND_FILES_CHANGED) = "" OR env(ANY_SERVICES_FILES_CHANGED) = "" OR env(SENSITIVE_FILES_CHANGED) = "")
433
+ NOT branch IN (master, alpha, staging, prod) AND (NOT env(FRONTEND_FILES_CHANGED) = "")
434
+ NOT branch IN (master, alpha, staging, prod) AND (env(ANY_SERVICES_FILES_CHANGED) IS blank AND env(FRONTEND_FILES_CHANGED) IS blank)
435
+ NOT branch IN (master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
436
+ NOT branch IN (master, alpha, staging, prod) AND env(ANY_SERVICES_FILES_CHANGED) IS blank AND env(FRONTEND_FILES_CHANGED) IS blank
437
+ NOT branch IN (master, alpha, staging, prod) AND env(ANY_SERVICES_FILES_CHANGED) IS blank AND env(FRONTEND_FILES_CHANGED) IS blank AND env(SENSITIVE_FILES_CHANGED) IS blank
438
+ NOT branch IN (master, develop)
439
+ NOT branch IN (master, staging, prod)
440
+ NOT branch ~= imageproxy
441
+ NOT env(COMMIT_MSG) =~ backend
442
+ NOT env(COMMIT_MSG) =~ frontend
443
+ NOT env(FRONTEND_FILES_CHANGED) = ""
444
+ NOT env(GH_TOKEN)
445
+ NOT env(TAG) IS present
446
+ NOT env(TARGET) IS present
447
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ "\[backend\]"
448
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ [backend]
449
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ \[backend\]
450
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ backend
451
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ frontend
452
+ NOT env(TRAVIS_COMMIT_MESSAGE) =~ tuvwxy
453
+ NOT env(VERSION) =~ ^pypy
454
+ NOT fork
455
+ NOT fork = true AND NOT type = pull_request
456
+ NOT repo =~ ^JimiC OR (branch != master AND NOT tag IS present) OR type = pull_request OR NOT env(TARGET) IS present
457
+ NOT repo =~ ^vscode-icons OR (branch != master AND NOT tag IS present) OR type = pull_request
458
+ NOT repo =~ ^vscode-icons OR (branch != master AND NOT tag IS present) OR type = pull_request OR env(TARGET) != vsi
459
+ NOT tag = "stable"
460
+ NOT tag = /.*/
461
+ NOT tag = stable
462
+ NOT tag =~ +d2$ AND tag IS present
463
+ NOT tag =~ +d2^
464
+ NOT tag =~ +d2^ AND tag IS present
465
+ NOT tag =~ \+d2$
466
+ NOT tag =~ ^.*\+d2^
467
+ NOT tag =~ ^v([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$
468
+ NOT tag =~ ^v1
469
+ NOT tag =~ ^v\d+\.\d+\.\d+$
470
+ NOT tag =~ d2$
471
+ NOT tag =~ d2^
472
+ NOT tag =~ d2^ AND tag IS present
473
+ NOT tag IS present
474
+ NOT tag IS present AND type IN (push)
475
+ NOT tag IS present OR tag =~ ^*-linux$
476
+ NOT type = pull_request
477
+ NOT type = pull_request AND (branch = master OR branch ~= ^[0-9]\.[0-9]$)
478
+ NOT type = pull_request AND (branch = master OR branch ~= ^[0-9]\.[0-9]$) AND repo = camptocamp/c2cgeoportal
479
+ NOT type = pull_request AND branch = master
480
+ NOT type = pull_request AND branch = master AND repo = camptocamp/c2cgeoportal
481
+ NOT type = pull_request AND repo = camptocamp/c2cgeoportal
482
+ NOT type = push
483
+ NOT type = tag
484
+ NOT type IN (cron)
485
+ NOT type IN (pull_request)
486
+ NOT type IN (pull_request) AND (branch = master OR tag =~ ^[0-9])
487
+ NOT type IN (pull_request) AND (branch = master OR tag =~ ^v[0-9])
488
+ NOT type IN (pull_request) AND (branch = master OR tag =~ ^v[1-9])
489
+ NOT type IN (pull_request) AND branch IN (dev)
490
+ NOT type IN (pull_request) AND branch IN (master)
491
+ NOT type IN (pull_request) AND branch IN (master, dev)
492
+ NOT type IN (push, cron)
493
+ NOT type in (pull_request)
494
+ NOT(type = pull_request)
495
+ REMOTE_DIR = olm_client
496
+ TRAVIS_EVENT_TYPE = cron
497
+ TRAVIS_PULL_REQUEST
498
+ TRAVIS_PULL_REQUEST != "false"
499
+ TRAVIS_PULL_REQUEST != false
500
+ TRAVIS_PULL_REQUEST = "false"
501
+ TRAVIS_PULL_REQUEST = false
502
+ TRAVIS_PULL_REQUEST IS false
503
+ TRAVIS_PULL_REQUEST IS present
504
+ TRAVIS_TAG ~= .+
505
+ after_success:
506
+ ansible_changes = 0
507
+ brahch = develop
508
+ branch != "develop" OR type IN (pull_request, api, cron)
509
+ branch != $SMOKE_BRANCH
510
+ branch != ${COVERITY_BRANCH_NAME}
511
+ branch != 'testflight'
512
+ branch != *release
513
+ branch != baked
514
+ branch != coverity
515
+ branch != coverity-scan
516
+ branch != coverity_scan
517
+ branch != docs
518
+ branch != gh-pages
519
+ branch != l10n-crowdin
520
+ branch != l10n-crowdin AND tag != "-fdroid$"
521
+ branch != l10n-crowdin AND tag != "-fdroid$" AND tag IS present
522
+ branch != master
523
+ branch != master AND NOT tag IS present
524
+ branch != master AND type != pull_request
525
+ branch != master AND type IN (push) AND fork = false
526
+ branch != master AND type IN (push, api, cron) AND fork = false
527
+ branch != master AND type IN (push, pull_request)
528
+ branch != master OR NOT type IN (push, cron)
529
+ branch != master OR tag =~ ^.*$
530
+ branch != master OR type != push
531
+ branch != master OR type = cron
532
+ branch != master OR type = pull_request
533
+ branch != master OR type IN (pull_request)
534
+ branch != master and type != pull_request
535
+ branch != production
536
+ branch != release
537
+ branch != rival_stage
538
+ branch != rival_stage and type != pull_request
539
+ branch != run-visual-test-with-cron-job OR type = cron
540
+ branch != scan-coverity
541
+ branch != staging OR type != push
542
+ branch !~ TestSkipPrBuilds
543
+ branch = "feature/base"
544
+ branch = "master"
545
+ branch = 'master'
546
+ branch = 'speed-up-travis' OR branch = 'staging' OR tag IS present
547
+ branch = 'staging' OR tag IS present
548
+ branch = 'staging' OR tag IS present OR branch = 'profiles-update'
549
+ branch = 10.0
550
+ branch = 2.0
551
+ branch = 2.x
552
+ branch = 32-travis-ci
553
+ branch = 32-travis-ci AND (NOT type = pull_request)
554
+ branch = 45861-step-4-5-6-7-upload-test-result-and-remove-toolstate-toml
555
+ branch = 45861-step-4-5-6-7-upload-test-result-and-remove-toolstate-toml AND type = push
556
+ branch = QA_TEST_TRAVIS OR branch = TEST_TRAVIS
557
+ branch = TEST_TRAVIS
558
+ branch = TESTci
559
+ branch = TESTstable and repo = diego-plan9/qiskit-sdk-py
560
+ branch = acc
561
+ branch = acc AND fork = false
562
+ branch = adv-travis-config
563
+ branch = atom/release
564
+ branch = auto
565
+ branch = auto OR branch = debug-48866
566
+ branch = auto OR branch = try
567
+ branch = auto OR type = pull_request
568
+ branch = auto-deployment
569
+ branch = automate-deployments
570
+ branch = autoupdate
571
+ branch = baked
572
+ branch = base
573
+ branch = beta
574
+ branch = beta AND type = push
575
+ branch = build-on-travis-test-on-dev
576
+ branch = build-stages
577
+ branch = build_and_test
578
+ branch = build_image
579
+ branch = buildartifacts
580
+ branch = builds-docker-backport-0.4
581
+ branch = cd
582
+ branch = ci_test
583
+ branch = ci_test OR branch = cooverity_scan
584
+ branch = compose
585
+ branch = coverity
586
+ branch = coverity-scan
587
+ branch = coverity_scan
588
+ branch = crush OR env(JS_CHANGED) IS present
589
+ branch = crush OR env(PY_CHANGED) IS present
590
+ branch = dataDependency OR tag IS present
591
+ branch = dataDependencySync OR tag IS present
592
+ branch = deploy
593
+ branch = deployment/production OR branch = deployment/staging OR branch = deployment/development OR type = pull_request
594
+ branch = dev
595
+ branch = dev AND type != pull_request
596
+ branch = dev and type = push
597
+ branch = dev/test-deploy AND type = push
598
+ branch = dev_package
599
+ branch = devel
600
+ branch = devel OR branch =~ ^develmock/
601
+ branch = devel OR branch ~= ^develmock/
602
+ branch = develop
603
+ branch = develop AND (type IN (push))
604
+ branch = develop AND NOT type = pull_request
605
+ branch = develop AND tag =~ *
606
+ branch = develop AND tag =~ /*/
607
+ branch = develop AND tag =~ \.*\
608
+ branch = develop AND tag =~ \^.*\
609
+ branch = develop AND tag =~ \^[0-9].*\
610
+ branch = develop AND type != pull_request
611
+ branch = develop AND type = push
612
+ branch = develop AND type == cron
613
+ branch = develop AND type IN (pull_request)
614
+ branch = develop AND type IN (push)
615
+ branch = develop AND type IN (push) AND tag =~ *
616
+ branch = develop AND type IN (push, api)
617
+ branch = develop AND type IN (push, pull_request)
618
+ branch = develop OR branch =~ ^greenkeeper
619
+ branch = develop OR tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta|rc)\.[0-9]+$
620
+ branch = develop and type = push
621
+ branch = develop/hardening
622
+ branch = develop/pipes-travis
623
+ branch = develop/travis
624
+ branch = development
625
+ branch = development AND (NOT type = pull_request)
626
+ branch = development AND type = push
627
+ branch = development OR type = pull_request
628
+ branch = docker-branch
629
+ branch = docker-builds
630
+ branch = docker-hub-images
631
+ branch = docker-tags
632
+ branch = env(DEPLOY_BRANCH)
633
+ branch = envs
634
+ branch = es-ecr-lifecycle-cleanup
635
+ branch = experimental
636
+ branch = experimental AND type = push
637
+ branch = faster_ci
638
+ branch = feat-ci
639
+ branch = feature/argparse-docs
640
+ branch = feature/base AND type IN (push)
641
+ branch = feature/ci-cleanup AND type != pull_request
642
+ branch = feature/ci-publishing
643
+ branch = feature/code-deploy AND type = push
644
+ branch = feature/github-pages
645
+ branch = feature/new_design
646
+ branch = feature/publish-artifactory
647
+ branch = feature/travis
648
+ branch = feature/travis-ci
649
+ branch = feature/travis-parallels-test
650
+ branch = fix_travis_osx AND type != pull_request
651
+ branch = gc/dynamic_knapsack_report
652
+ branch = gc/updated_knapsack_report
653
+ branch = hotfix/v0.2.1
654
+ branch = http-connection
655
+ branch = ignore-this-branch
656
+ branch = integration AND type = push
657
+ branch = llvm-6-test
658
+ branch = local_docker_build
659
+ branch = master
660
+ branch = master AND type IN (push)
661
+ branch = master AND (NOT type = pull_request)
662
+ branch = master AND (NOT type IN (pull_request))
663
+ branch = master AND (env(rebuild-android) = true OR tag = Rebuild android)
664
+ branch = master AND (type IN (pull_request))
665
+ branch = master AND NOT env(RELEASE_ENVIRONMENT) IS present
666
+ branch = master AND NOT env(TRAVIS_PULL_REQUEST)
667
+ branch = master AND NOT type = pull_request
668
+ branch = master AND NOT type = pull_request AND NOT type = cron
669
+ branch = master AND NOT type IN (cron)
670
+ branch = master AND NOT type IN (pull_request)
671
+ branch = master AND NOT type IN (pull_request, cron, api)
672
+ branch = master AND NOT(type IN (push,pull_request))
673
+ branch = master AND env(TRAVIS_PULL_REQUEST_BRANCH) IS blank AND env(TRAVIS_TAG) IS blank
674
+ branch = master AND env(TRAVIS_TAG) IS blank
675
+ branch = master AND pull_request = false
676
+ branch = master AND pull_request IS false
677
+ branch = master AND repo = Shopify/ingress
678
+ branch = master AND repo = camptocamp/ngeo
679
+ branch = master AND repo = yahoo/navi
680
+ branch = master AND repo = yahoo/navi AND type = push
681
+ branch = master AND sender != elgalubot AND tag IS blank
682
+ branch = master AND sender != elgalubot AND tag IS blank AND type != pull_request
683
+ branch = master AND tag !~ ^v
684
+ branch = master AND tag IS blank
685
+ branch = master AND tag IS present AND env(REBUILD_ANDROID) IS true
686
+ branch = master AND tag IS present AND env(REBUILD_IOS) IS true
687
+ branch = master AND tag is blank
688
+ branch = master AND tag is blank AND fork is false AND repo = head_repo AND type != pull_request
689
+ branch = master AND tag is blank AND fork is false AND type != pull_request
690
+ branch = master AND tag is blank AND fork is false AND type != pull_request AND repo = head_repo
691
+ branch = master AND type != pull_request
692
+ branch = master AND type != pull_request AND NOT tag IS present AND NOT env(TARGET) IS present
693
+ branch = master AND type != pull_request AND type != cron
694
+ branch = master AND type = api AND env(TRAVIS_API_TYPE) IS blank
695
+ branch = master AND type = cron
696
+ branch = master AND type = pull_request
697
+ branch = master AND type = push
698
+ branch = master AND type = push AND $IS_DEPLOYABLE = 1
699
+ branch = master AND type = push AND env(PEPA) IS blank
700
+ branch = master AND type = push AND fork = false
701
+ branch = master AND type = push AND platform = Linux
702
+ branch = master AND type = push AND repo = plus3it/spel
703
+ branch = master AND type = push OR type = pull_request
704
+ branch = master AND type == cron
705
+ branch = master AND type IN (cron)
706
+ branch = master AND type IN (cron, api)
707
+ branch = master AND type IN (pull_request)
708
+ branch = master AND type IN (push)
709
+ branch = master AND type IN (push) AND fork = false
710
+ branch = master AND type IN (push) AND repo != bootique/bootique
711
+ branch = master AND type IN (push) AND repo = bootique/bootique
712
+ branch = master AND type IN (push) AND repo = bootique/bootique-bom
713
+ branch = master AND type IN (push) AND repo = bootique/bootique-cayenne
714
+ branch = master AND type IN (push) AND repo = bootique/bootique-cxf
715
+ branch = master AND type IN (push) AND repo = bootique/bootique-di
716
+ branch = master AND type IN (push) AND repo = bootique/bootique-flyway
717
+ branch = master AND type IN (push) AND repo = bootique/bootique-jcache
718
+ branch = master AND type IN (push) AND repo = bootique/bootique-jdbc
719
+ branch = master AND type IN (push) AND repo = bootique/bootique-jersey
720
+ branch = master AND type IN (push) AND repo = bootique/bootique-jersey-client
721
+ branch = master AND type IN (push) AND repo = bootique/bootique-jetty
722
+ branch = master AND type IN (push) AND repo = bootique/bootique-job
723
+ branch = master AND type IN (push) AND repo = bootique/bootique-jooq
724
+ branch = master AND type IN (push) AND repo = bootique/bootique-kotlin
725
+ branch = master AND type IN (push) AND repo = bootique/bootique-linkmove
726
+ branch = master AND type IN (push) AND repo = bootique/bootique-linkrest
727
+ branch = master AND type IN (push) AND repo = bootique/bootique-liquibase
728
+ branch = master AND type IN (push) AND repo = bootique/bootique-metrics
729
+ branch = master AND type IN (push) AND repo = bootique/bootique-mvc
730
+ branch = master AND type IN (push) AND repo = bootique/bootique-shiro
731
+ branch = master AND type IN (push) AND repo = bootique/bootique-swagger
732
+ branch = master AND type IN (push) AND repo = bootique/bootique-tapestry
733
+ branch = master AND type IN (push) AND repo = bootique/bootique-undertow
734
+ branch = master AND type IN (push, api, cron) AND fork = false
735
+ branch = master AND type IN (push, cron)
736
+ branch = master AND type NOT IN (pull_request)
737
+ branch = master AND type NOT IN (pull_request, cron)
738
+ branch = master AND type NOT IN (pull_request, cron, api)
739
+ branch = master AND type NOT IN (push, pull_request)
740
+ branch = master AND type in (push)
741
+ branch = master OR branch = develop
742
+ branch = master OR (branch = develop AND env(TRAVIS_COMMIT_MESSAGE) =~ ^[stagingdeploy]$)
743
+ branch = master OR RUN_QA IS present OR branch = visual-testing
744
+ branch = master OR branch = closureCircularity OR branch =~ ^release/ OR tag IS present
745
+ branch = master OR branch = develop
746
+ branch = master OR branch = develop OR branch = hotfix
747
+ branch = master OR branch = develop OR branch =~ ^release\/.*$ OR branch =~ ^hotfix\/.*$ OR branch =~ ^bugfix\/.*$ OR branch =~ ^support\/.*$ OR tag IS present OR type IN (pull_request, api)
748
+ branch = master OR branch = lukehoban/grpc1.10 OR branch =~ ^release/ OR tag IS present
749
+ branch = master OR branch = moduleSerialization OR branch =~ ^release/ OR tag IS present
750
+ branch = master OR branch = moduleSerialization2 OR branch =~ ^release/ OR tag IS present
751
+ branch = master OR branch = noCaptureBit OR branch =~ ^release/ OR tag IS present
752
+ branch = master OR branch = outputSerialization OR branch =~ ^release/ OR tag IS present
753
+ branch = master OR branch = prod
754
+ branch = master OR branch = serializationWork OR branch =~ ^release/ OR tag IS present
755
+ branch = master OR branch = serializeLess OR branch =~ ^release/ OR tag IS present
756
+ branch = master OR branch = splitFiles OR branch =~ ^release/ OR tag IS present
757
+ branch = master OR branch = v3
758
+ branch = master OR branch =~ ^enterprise-.*
759
+ branch = master OR branch =~ ^mastermock/
760
+ branch = master OR branch =~ ^release/ OR tag IS present
761
+ branch = master OR branch =~ backport/.*
762
+ branch = master OR branch ~= ^[0-9]\.[0-9]$
763
+ branch = master OR env(RUN_QA) IS present
764
+ branch = master OR env(RUN_QA) IS present OR branch = fix/search-refresh
765
+ branch = master OR env(RUN_QA) IS present OR branch = improve-content-spacing
766
+ branch = master OR env(RUN_QA) IS present OR branch = improve-percy-screenshots
767
+ branch = master OR env(RUN_QA) IS present OR branch = visual-testing
768
+ branch = master OR tag =~ $SEMVER_REGEX
769
+ branch = master OR tag =~ ^release-
770
+ branch = master OR tag =~ ^v
771
+ branch = master OR tag =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$
772
+ branch = master OR tag =~ ^v\d+\.\d+$
773
+ branch = master OR tag IS present
774
+ branch = master OR tag IS present OR branch = fix-docker
775
+ branch = master OR type != pull_request
776
+ branch = master OR type = pull_request
777
+ branch = master OR type = pull_request OR branch =~ ^rc_.*
778
+ branch = master OR type == pull_request
779
+ branch = master OR type IN (pull_request)
780
+ branch = master OR type IN (pull_request) AND env(TRAVIS_SECURE_ENV_VARS) = true
781
+ branch = master and (not type = pull_request)
782
+ branch = master and not (type = pull_request)
783
+ branch = master and repo = danielsuo/brainiak
784
+ branch = master and type != "pull_request"
785
+ branch = master and type != pull-request
786
+ branch = master and type != pull_request
787
+ branch = master and type = pull_request
788
+ branch = master and type = push
789
+ branch = master or branch = devel
790
+ branch = master or branch = develop
791
+ branch = master or type = pull-request
792
+ branch = master-test
793
+ branch = migration
794
+ branch = more-osx-cores
795
+ branch = move-AMI-build
796
+ branch = netbsd-i386-build
797
+ branch = oldstable OR tag IS present
798
+ branch = optimize-docker
799
+ branch = optimize-docker AND NOT type = pull_request
800
+ branch = overlayArray OR tag IS present
801
+ branch = pending AND type != pull_request AND tag IS blank
802
+ branch = persistance_integration
803
+ branch = phil-work
804
+ branch = pre-release
805
+ branch = prepare-release
806
+ branch = prerelease
807
+ branch = preview-nanno
808
+ branch = prod
809
+ branch = production
810
+ branch = production AND type != pull_request
811
+ branch = production AND type != pull_requst
812
+ branch = production AND type = push
813
+ branch = python3
814
+ branch = qa
815
+ branch = qa_branch-test
816
+ branch = rancher-prep
817
+ branch = rancher-prep AND type IN (push)
818
+ branch = rancher-updates AND type IN (push)
819
+ branch = ravens
820
+ branch = rc
821
+ branch = react/develop
822
+ branch = react/production
823
+ branch = rec-cluster AND type != pull_request
824
+ branch = release
825
+ branch = release OR branch = master OR branch =~ ^release-(\d).(\d).(\d)$
826
+ branch = release-staging AND type = push
827
+ branch = release-temp
828
+ branch = release-tests AND type = push
829
+ branch = release/staging
830
+ branch = removeComputed OR tag IS present
831
+ branch = rhialto
832
+ branch = rival_stage
833
+ branch = rollbackTest OR tag IS present
834
+ branch = ruby
835
+ branch = sandbox
836
+ branch = secondary
837
+ branch = semantic-release AND type != pull_request
838
+ branch = simpler-travis-tests
839
+ branch = site-auto-publish AND type IN (push)
840
+ branch = stable
841
+ branch = stable OR branch = cooverity_scan
842
+ branch = stable and repo = QISKit/qiskit-sdk-py
843
+ branch = stable10 OR branch =~ ^hotfix-.*$ OR type = cron
844
+ branch = stable10 OR type = cron
845
+ branch = stage
846
+ branch = staging
847
+ branch = staging AND (NOT type IN (pull_request))
848
+ branch = staging AND type = push
849
+ branch = staging AND type IN (push)
850
+ branch = staging OR branch = trying OR branch =~ /^v\d+/
851
+ branch = staging OR type = pull_request
852
+ branch = staging-new-signup
853
+ branch = switch-to-go-1.9
854
+ branch = task/ASI-93-auto-update-campaign-performance-summary-for-periscope
855
+ branch = task/ASI-99-jar-and-dag-auto-deploy-to-production
856
+ branch = test
857
+ branch = test-1
858
+ branch = test-deploy
859
+ branch = test/travis-deploy
860
+ branch = test/travis-deploy-full
861
+ branch = testing OR branch = staging OR type = pull_request
862
+ branch = tmp-dev
863
+ branch = topic/releases
864
+ branch = translation-tx-test AND type = push
865
+ branch = travis
866
+ branch = travis and type = push
867
+ branch = travis-ci
868
+ branch = travis-conditional
869
+ branch = travis-tests
870
+ branch = travis-yml-cleanup
871
+ branch = travis_deployment
872
+ branch = travis_integration
873
+ branch = travis_matrix
874
+ branch = travisdeploy
875
+ branch = travisize
876
+ branch = try
877
+ branch = try AND type = push
878
+ branch = try OR branch = auto
879
+ branch = try OR branch = llvm-6-test
880
+ branch = try-removing-stages AND type = push
881
+ branch = v2
882
+ branch = working
883
+ branch == appcenter-deploy
884
+ branch == custom_env_forwarder
885
+ branch == custom_env_forwarder AND type = push
886
+ branch == master
887
+ branch == master AND branch != master
888
+ branch == master AND type = push
889
+ branch == master AND type IN (push, api, cron)
890
+ branch == rival_stage
891
+ branch =~ /^(develop|master|release\/.*)$/
892
+ branch =~ /^(develop|master|release\/.*|feature\/.*)$/
893
+ branch =~ /^feature\/.*$/
894
+ branch =~ /^feature\/.*/
895
+ branch =~ /^release\/.*$/
896
+ branch =~ /^release\/.*/
897
+ branch =~ /^release\/\d*$/
898
+ branch =~ /^release\/\d*$/ OR branch =~ /^QA\_\d*$/
899
+ branch =~ /^v\d+\.\d+\.\d+.*$/
900
+ branch =~ /feature\/.+/
901
+ branch =~ /master|back\/cs\/main/
902
+ branch =~ /master|back\/go\/main/
903
+ branch =~ /master|front\/ts\/main/
904
+ branch =~ /release\/.+/
905
+ branch =~ ^(master)$
906
+ branch =~ ^(master|preview-(.*)|develop|rc)$
907
+ branch =~ ^(master|production\-reg\.burst)$
908
+ branch =~ ^(master|production\-reg|production\-reg\.burst)$
909
+ branch =~ ^(master|v?(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-[\da-z-]+(?:\.[\da-z-]+)*)?(?:\+[\da-z-]+(?:\.[\da-z-]+)*)?)$
910
+ branch =~ ^(pre-master|master|production\-reg|production\-reg\.burst)$
911
+ branch =~ ^(pre-master|master|production\-reg|production\-reg\.test|production\-reg\.burst)$
912
+ branch =~ ^(preview-(.*)|develop)$
913
+ branch =~ ^(prod-seating|prod-cp|prod-accounts|pre-master|production\-reg|production\-reg\.test|production\-reg\.burst)$
914
+ branch =~ ^(rc)$
915
+ branch =~ ^(v?(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)\.(?:0|[1-9]\d*)(?:-[\da-z-]+(?:\.[\da-z-]+)*)?(?:\+[\da-z-]+(?:\.[\da-z-]+)*)?)$
916
+ branch =~ ^.*(?<!-built)$
917
+ branch =~ ^[0-9]
918
+ branch =~ ^bywater-v
919
+ branch =~ ^develop
920
+ branch =~ ^develop OR branch =~ ^master OR branch =~ ^release
921
+ branch =~ ^develop/.*$
922
+ branch =~ ^f
923
+ branch =~ ^feature\/.*
924
+ branch =~ ^feature\/.* AND type = push
925
+ branch =~ ^feature\/.*$
926
+ branch =~ ^feature\/.*$ AND type = push
927
+ branch =~ ^greenkeeper
928
+ branch =~ ^greenkeeper\/.*$
929
+ branch =~ ^greenkeeper\/.*-.*$
930
+ branch =~ ^master
931
+ branch =~ ^master AND "$TRAVIS_PULL_REQUEST" == "false"
932
+ branch =~ ^master AND $TRAVIS_PULL_REQUEST == "false"
933
+ branch =~ ^master AND $TRAVIS_PULL_REQUEST == 'false'
934
+ branch =~ ^master AND $TRAVIS_PULL_REQUEST == false
935
+ branch =~ ^master AND NOT type =~ ^pull_request
936
+ branch =~ ^master OR branch =~ /^pr\..*/
937
+ branch =~ ^master$
938
+ branch =~ ^master$ AND type NOT IN (pull_request)
939
+ branch =~ ^master$ AND type ~= pull_request
940
+ branch =~ ^master|develop$ OR branch =~ ^(release|hotfix|bugfix|support)\/.*$ OR tag IS present OR type IN (pull_request, api)
941
+ branch =~ ^preview-(.*)$
942
+ branch =~ ^prod.*$
943
+ branch =~ ^release
944
+ branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$
945
+ branch =~ ^release/\d*$
946
+ branch =~ ^release/\d*$ OR branch =~ ^QA_\d*$
947
+ branch =~ ^release\/\d*$ OR branch =~ ^QA\_\d*$
948
+ branch =~ ^staging*$
949
+ branch =~ ^staging*$ AND type != pull_request
950
+ branch =~ ^staging*$ AND type NOT IN (pull_request)
951
+ branch =~ ^staging*$ AND type ~= pull_request
952
+ branch =~ ^staging.*$
953
+ branch =~ ^test-
954
+ branch =~ ^test- OR type IN(pull_request)
955
+ branch =~ ^travis-call-gordon.*$
956
+ branch =~ ^v.+\dlibzfs$
957
+ branch =~ ^v.+fable-import-nodelibzfs$
958
+ branch =~ ^v.+libzfs$
959
+ branch =~ ^v.+libzfs-sys$
960
+ branch =~ ^v.+node$
961
+ branch =~ ^v.+node-libzfs$
962
+ branch =~ ^v[0-9]+\.(x|[0-9]+)\.x$ AND NOT type IN (pull_request)
963
+ branch =~ ^v[0-9]+\.[0-9]+\.x$
964
+ branch =~ ^v\d+\.\d+\.\d$
965
+ branch =~ ^v\d+\.\d+\.\d+$
966
+ branch =~ ^v\d+\.\d+\.\d+-.+$
967
+ branch =~ ^v\d+\.\d+\.\d+-.+node-libzfs$
968
+ branch =~ ^v\d+\.\d+\.\d+-1.*$
969
+ branch =~ ^wip OR branch =~ ^pr-
970
+ branch =~ back
971
+ branch =~ back/go/main
972
+ branch =~ coverage
973
+ branch =~ extraci OR (repo = percona/percona-server) AND (type = push)
974
+ branch =~ extraci OR repo = percona/percona-server AND type IN (push, cron)
975
+ branch =~ front
976
+ branch =~ front/ts/main
977
+ branch =~ fullci OR ((repo = percona/percona-server) AND (type = pull_request))
978
+ branch =~ fullci OR (repo = percona/percona-server) AND (type = pull_request)
979
+ branch =~ fullci OR repo = percona/percona-server AND type IN (push, pull_request, cron)
980
+ branch =~ imageproxy
981
+ branch =~ inverted
982
+ branch =~qa_branch-test
983
+ branch IN ("master")
984
+ branch IN ("master", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = pull_request
985
+ branch IN ("master", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = push
986
+ branch IN ("master1", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = pull_request
987
+ branch IN ("master1", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = push
988
+ branch IN ("master2", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/")
989
+ branch IN ("master2", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = pull_request
990
+ branch IN ("master2", "/^(?i:epic)/major.*$/", "/^(?i:epic)/feature.*$/", "/^(?i:epic)/bugfix.*$/") AND type = push
991
+ branch IN ("raees/travisFix", master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
992
+ branch IN ("raees/travisFix", master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "")
993
+ branch IN ('master', 'develop')
994
+ branch IN (1.x, 2.x)
995
+ branch IN (Staging, Stable) AND type = push
996
+ branch IN (Testing, Stable) AND type = push
997
+ branch IN (Testing, Staging, Stable) AND type = push
998
+ branch IN (^v.*, master)
999
+ branch IN (alpha, beta, dev, master)
1000
+ branch IN (appveyor-travis-Merge-10.0.x-to-master, master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$
1001
+ branch IN (appveyor-travis-Merge-10.0.x-to-master, master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1002
+ branch IN (appveyor-travis-Merge-10.0.x-to-master, master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1003
+ branch IN (dev)
1004
+ branch IN (dev, acc, stage, prod)
1005
+ branch IN (dev, acc, stage, prod) AND fork = false
1006
+ branch IN (dev, alpha, stage, prod)
1007
+ branch IN (dev, master, demo)
1008
+ branch IN (dev, stage, prod)
1009
+ branch IN (dev, staging, production)
1010
+ branch IN (dev1, master, staging, rc)
1011
+ branch IN (develop)
1012
+ branch IN (develop, SPP-323/create-edit-solutions) AND NOT type = pull_request
1013
+ branch IN (develop, devops/deploy_tooling)
1014
+ branch IN (develop, devops/fix_travis_build)
1015
+ branch IN (develop, master)
1016
+ branch IN (develop, master) AND type IN (push)
1017
+ branch IN (develop, release/1.16.4)
1018
+ branch IN (develop, release/1.16.5)
1019
+ branch IN (develop, release/1.16.5.2)
1020
+ branch IN (develop, release/1.16.5.3)
1021
+ branch IN (develop, release/1.17.0)
1022
+ branch IN (develop, release/1.17.2)
1023
+ branch IN (develop, release/1.17.3)
1024
+ branch IN (develop, release/1.19.1)
1025
+ branch IN (develop, release/1.20)
1026
+ branch IN (develop, release/1.21.0)
1027
+ branch IN (develop, release/1.21.1)
1028
+ branch IN (develop, rerelease/1.16.3)
1029
+ branch IN (develop, staging) OR type = pull_request
1030
+ branch IN (develop, staging, master) OR type = pull_request
1031
+ branch IN (develop, travis)
1032
+ branch IN (develop,poc/administration-page)
1033
+ branch IN (develop,release/1.16.5.3)
1034
+ branch IN (develop,release/1.16.5.5)
1035
+ branch IN (develop,release/1.16.5.6)
1036
+ branch IN (develop,release/1.19.0)
1037
+ branch IN (development, master) AND NOT type = pull_request
1038
+ branch IN (env(RELEASE_BRANCHES))
1039
+ branch IN (fastlane-beta, develop)
1040
+ branch IN (feat/travis, develop, rc, staging, master) OR type = pull_request
1041
+ branch IN (feat/travis, rc, staging, master) OR type = pull_request
1042
+ branch IN (fix-downloading-GuiEnv, master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$
1043
+ branch IN (fix-downloading-GuiEnv, master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1044
+ branch IN (master)
1045
+ branch IN (master) OR type = pull_request
1046
+ branch IN (master, TASK-10)
1047
+ branch IN (master, TASK-3)
1048
+ branch IN (master, TASK-3, TASK-24)
1049
+ branch IN (master, alpha, staging, prod)
1050
+ branch IN (master, alpha, staging, prod) AND NOT (env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
1051
+ branch IN (master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
1052
+ branch IN (master, alpha, staging, prod) AND NOT (env(SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
1053
+ branch IN (master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$
1054
+ branch IN (master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1055
+ branch IN (master, appveyor-travis-10.0.x) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1056
+ branch IN (master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$
1057
+ branch IN (master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1058
+ branch IN (master, appveyor-travis-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1059
+ branch IN (master, appveyor-travis-master, atom/release) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1060
+ branch IN (master, appveyor-travis-master, dont-use-xcpretty) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1061
+ branch IN (master, beta, release) OR tag IS present
1062
+ branch IN (master, ci-deploy)
1063
+ branch IN (master, ci-deploy, ci-temp-test)
1064
+ branch IN (master, code-freeze-2017)
1065
+ branch IN (master, compatibility-9)
1066
+ branch IN (master, dev)
1067
+ branch IN (master, dev, creating-structure)
1068
+ branch IN (master, devel)
1069
+ branch IN (master, devel) OR branch =~ ^version-
1070
+ branch IN (master, develop)
1071
+ branch IN (master, develop) AND (NOT type = pull_request)
1072
+ branch IN (master, develop) AND NOT type = pull_request
1073
+ branch IN (master, develop) AND type = push
1074
+ branch IN (master, develop) AND type IN (push, api, cron)
1075
+ branch IN (master, develop) OR branch =~ ^release\/.+$ OR branch =~ ^hotfix\/.+$ OR branch =~ ^bugfix\/.+$ OR branch =~ ^support\/.+$ OR tag IS present OR type IN (pull_request, api)
1076
+ branch IN (master, develop) OR tag =~ ^v
1077
+ branch IN (master, develop, SPP-323/create-edit-solutions) AND NOT type = pull_request
1078
+ branch IN (master, develop, optimize-docker)
1079
+ branch IN (master, develop, optimize-docker) AND NOT type = pull_request
1080
+ branch IN (master, develop, robot-tests) AND NOT type = pull_request
1081
+ branch IN (master, development)
1082
+ branch IN (master, development, MIS-504-take1)
1083
+ branch IN (master, development, MIS-569-stages)
1084
+ branch IN (master, development, MIS-569-stages-take2)
1085
+ branch IN (master, development, MIS-592-retake0)
1086
+ branch IN (master, development, MIS-592-retake2)
1087
+ branch IN (master, development, MIS-592-retake3)
1088
+ branch IN (master, development, MIS-592-retake4)
1089
+ branch IN (master, development, MIS-592-retake5)
1090
+ branch IN (master, development, MIS-592-ssk-run)
1091
+ branch IN (master, development, MIS-592-take10)
1092
+ branch IN (master, development, features)
1093
+ branch IN (master, devly-ci)
1094
+ branch IN (master, documentation) AND type IN (push, api)
1095
+ branch IN (master, edge, app-shell_travis-testing-mc) AND type != pull_request
1096
+ branch IN (master, emergent_qa)
1097
+ branch IN (master, ezkl/shiply-fixes)
1098
+ branch IN (master, jenkins-10.0.x, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$
1099
+ branch IN (master, jenkins-10.0.x, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1100
+ branch IN (master, jenkins-10.0.x, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1101
+ branch IN (master, jenkins-master) OR branch =~ ^ci-control/\d+$
1102
+ branch IN (master, jenkins-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1103
+ branch IN (master, jenkins-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1104
+ branch IN (master, jenkins-master, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$
1105
+ branch IN (master, jenkins-master, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1106
+ branch IN (master, jenkins-master, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_move$
1107
+ branch IN (master, npm-publish)
1108
+ branch IN (master, optimize-docker) AND NOT type = pull_request
1109
+ branch IN (master, production)
1110
+ branch IN (master, production, dockerize-scheduler-worker)
1111
+ branch IN (master, seetest/sandbox)
1112
+ branch IN (master, staging)
1113
+ branch IN (master, staging, prod)
1114
+ branch IN (master, testing)
1115
+ branch IN (master, travis)
1116
+ branch IN (master, trying) OR tag =~ ^v\d+\.\d+\.\d+.*$
1117
+ branch IN (master, trying, staging) OR tag =~ ^\d+\.\d+\.\d+.*$
1118
+ branch IN (master, trying, staging) OR tag =~ ^v\d+\.\d+\.\d+.*$
1119
+ branch IN (master, turn-xcbeauty-on, jenkins-master, jenkins-Merge-10.0.x-to-master) OR branch =~ ^ci-control/\d+$ OR branch =~ ^ci-control/\d+_atom$
1120
+ branch IN (master,dev,qa) or type = pull_request
1121
+ branch IN (master,travis)
1122
+ branch IN (qa)
1123
+ branch IN (qa, release__1.5)
1124
+ branch IN (qa, staging, production)
1125
+ branch IN (qa, staging, production, release__1.5)
1126
+ branch IN (rc, staging, master) OR type = pull_request
1127
+ branch IN (stable, master)
1128
+ branch IN (stable, master) or branch =~ ^.*-ui$
1129
+ branch IN (stable, master) or branch =~ ^.*[-_]ui$
1130
+ branch IN (staging, demo, production)
1131
+ branch IN (staging, production)
1132
+ branch IN (staging, trying)
1133
+ branch IN (v.0.9.2.1, master)
1134
+ branch IN (working)
1135
+ branch IS present
1136
+ branch NOT IN (master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "" AND env(SENSITIVE_FILES_CHANGED) = "")
1137
+ branch NOT IN (master, alpha, staging, prod) AND NOT (env(FRONTEND_FILES_CHANGED) = "" AND env(ANY_SERVICES_FILES_CHANGED) = "")
1138
+ branch in (dev, knackperf) and type = push
1139
+ branch in (develop, /feature\/.+/ , /release\/.+/)
1140
+ branch in (master)
1141
+ branch in (master, dev) OR type == pull
1142
+ branch in (master, develop)
1143
+ branch in (master, develop) AND type != pull_request
1144
+ branch in (master, develop, hotfix)
1145
+ branch in (master, develop, hotfix) AND type != pull_request
1146
+ branch ~= ^(preview-(.*)|develop)$
1147
+ branch ~= ^(rc)$
1148
+ branch ~= ^[0-9]\.[0-9]$
1149
+ branch ~= coverage
1150
+ branch ~= imageproxy
1151
+ branch=adv-travis-config
1152
+ branch=chore/rework-docker-entry
1153
+ branch=dev
1154
+ branch=feature/publish-artifactory
1155
+ branch=master
1156
+ branch=master OR type=pull_request
1157
+ branch=revert/sopstool-intro
1158
+ branche = master
1159
+ build =~ /^feature\/.*$/
1160
+ build IN (develop, master, /^release\/.*$/)
1161
+ changes = 0
1162
+ changes = 1
1163
+ env($TAG_ENABLE)=True
1164
+ env($TRAVIS_OS_NAME) = linux
1165
+ env($TRAVIS_OS_NAME)=linux
1166
+ env($TRAVIS_TAG) IS blank
1167
+ env($TRAVIS_TAG) IS present
1168
+ env(ANY_SERVICES_FILES_CHANGED) != ""
1169
+ env(BAR) IS blank
1170
+ env(BUILD_DOCS) = false
1171
+ env(BUILD_DOCS) IS present
1172
+ env(COVERALLS_REPO_TOKEN) != ''
1173
+ env(COVERALLS_REPO_TOKEN) != '' AND branch =~ ^v[0-9]+\.x\.x$
1174
+ env(COVERITY_SCAN_BRANCH) != 1
1175
+ env(COVERITY_SCAN_BRANCH) == 1
1176
+ env(DOCS) = true
1177
+ env(EXECUTABLE) = false
1178
+ env(FEEDSTOCKS) IS BLANK
1179
+ env(FEEDSTOCKS) IS blank
1180
+ env(FOO) = fifi
1181
+ env(FOO) = fofo
1182
+ env(FOO) IS blank
1183
+ env(FOO) IS present
1184
+ env(FORCE_REBUILD) ~= ^true$
1185
+ env(FRONTEND_FILES_CHANGED) != ""
1186
+ env(FRONTEND_FILES_CHANGED) != "" OR env(ANY_SERVICES_FILES_CHANGED) != "" OR env(SENSITIVE_FILES_CHANGED) != ""
1187
+ env(FRONTEND_FILES_CHANGED) != "" OR env(SENSITIVE_FILES_CHANGED) != ""
1188
+ env(GH_TOKEN)
1189
+ env(GH_TOKEN) IS NOT present
1190
+ env(GH_TOKEN) IS blank
1191
+ env(INGEST_VERSION) =~ ^0.1.0-SNAPSHOT$
1192
+ env(IS_COMMIT_UPDATE_VERSION) == 'yes'
1193
+ env(LINT) = true
1194
+ env(LP3D_BUILD_PKG) IS blank
1195
+ env(MONGOOSE_VERSION) = 5
1196
+ env(NODE_ENV) = production
1197
+ env(NODE_ENV) = test
1198
+ env(PEPA) IS blank
1199
+ env(PKG) IS present
1200
+ env(PRE_COMMIT_MESSAGE) = xxx
1201
+ env(PRE_COMMIT_MESSAGE) =~ xxx
1202
+ env(PRIOR_VERSION) != 1.*
1203
+ env(PRIOR_VERSION) != env(RELEASE_VERSION)
1204
+ env(PRIOR_VERSION) != env(RELEASE_VERSION) and branch = master and type = push AND repo = plus3it/terraform-aws-bucket-objects
1205
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION)
1206
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master
1207
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push
1208
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = cotsog/travis_ci_prod_regular
1209
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = justien/travis_conditional_stages
1210
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = plus3it/terraform-aws-bucket-objects
1211
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = plus3it/terraform-aws-watchmaker
1212
+ env(PRIOR_VERSION) IS present AND env(PRIOR_VERSION) != env(RELEASE_VERSION) AND branch = master AND type = push AND repo = plus3it/terraform-external-file-cache
1213
+ env(PRIOR_VERSION) IS present and env(PRIOR_VERSION) != env(RELEASE_VERSION) and branch = master and type = push AND repo = plus3it/terraform-aws-bucket-objects
1214
+ env(PRIOR_VERSION) IS present and env(PRIOR_VERSION) != env(RELEASE_VERSION) and branch = master and type = push AND repo = plus3it/terraform-aws-watchmaker
1215
+ env(PROJECT) = ethereum
1216
+ env(REBUILD) = true OR env(FORCE_REBUILD) = true OR (branch = master AND NOT type=pull)
1217
+ env(REBUILD) = true OR env(FORCE_REBUILD) = true OR branch = master
1218
+ env(REBUILD) OR env(FORCE_REBUILD) OR branch = master
1219
+ env(REBUILD) ~= ^true$ OR env(FORCE_REBUILD) ~= ^true$ OR (branch = master AND type = push)
1220
+ env(RELEASE_ENVIROMENT) = development
1221
+ env(RELEASE_ENVIRONMENT) NOT IN (production, staging, development)
1222
+ env(SENSITIVE_FILES_CHANGED) != ""
1223
+ env(SERVICE) = lint
1224
+ env(SNYK_TOKEN) AND env(GH_TOKEN)
1225
+ env(SONAR_TOKEN) IS present
1226
+ env(TARGET) = vsi
1227
+ env(TARGET) = vsi AND type = api
1228
+ env(TEST_SUITE) = env(PY_LINT)
1229
+ env(TEST_SUITE) = env(PY_TEST)
1230
+ env(TEST_TYPE) = build
1231
+ env(TRAVIS_API_TYPE) = nightly
1232
+ env(TRAVIS_API_TYPE) IS blank
1233
+ env(TRAVIS_BRANCH) != coverity
1234
+ env(TRAVIS_BRANCH) != env(COVERITY_BRANCH_NAME)
1235
+ env(TRAVIS_BRANCH) = env(COVERITY_BRANCH_NAME)
1236
+ env(TRAVIS_COMMIT_MESSAGE) != "Deploy AdguardTeam/FiltersRegistry to github.com/AdguardTeam/FiltersRegistry.git:test"
1237
+ env(TRAVIS_COMMIT_MESSAGE) !~ AUTO-CREATED
1238
+ env(TRAVIS_COMMIT_MESSAGE) !~ ^AUTO-CREATED
1239
+ env(TRAVIS_COMMIT_MESSAGE) =~ *bar*
1240
+ env(TRAVIS_COMMIT_MESSAGE) =~ *osx*
1241
+ env(TRAVIS_COMMIT_MESSAGE) ~= BP_E2E
1242
+ env(TRAVIS_EVENT_TYPE) != cron
1243
+ env(TRAVIS_REPO_SLUG) != apache/thrift
1244
+ env(TRAVIS_TAG) IS blank
1245
+ env(VERSION) != 3.8-dev
1246
+ env(VERSION) != 3.8-dev AND ( NOT env(VERSION) =~ ^pypy )
1247
+ env(VSI) IS present
1248
+ env(VSI_TAG) = latest
1249
+ env(VSI_TAG) =~ ^[0-9.]+
1250
+ env(VSI_TAG) IS present
1251
+ env(env_name) != "false"
1252
+ env(env_name) IS blank
1253
+ env(env_name) IS present
1254
+ env(name) = pip_requirements_check
1255
+ env(name) = production_env_check
1256
+ env:
1257
+ event != pull_request
1258
+ false
1259
+ fork
1260
+ fork != false
1261
+ fork = false
1262
+ fork = true
1263
+ fork == false
1264
+ fork IS true
1265
+ fork OR (type IN (pull_request))
1266
+ fork OR type IN (pull_request)
1267
+ head_branch = cd
1268
+ head_branch = fix-hdfs-travis
1269
+ head_branch = master or head_branch = travis-ci
1270
+ head_branch = staging or head_branch = travis-ci
1271
+ head_branch = travis-ci
1272
+ head_branch == master
1273
+ head_branch == master AND head_branch != master
1274
+ head_branch =~ ^release.*
1275
+ head_branch =~ ^release/.*
1276
+ head_branch =~ ^release/.* AND fork == false
1277
+ head_branch IS NOT blank
1278
+ head_branch IS blank AND branch = master
1279
+ head_branch IS present
1280
+ my_var = notdemo
1281
+ name = stable
1282
+ not (env(SKIP) = Test1)
1283
+ not (env(SKIP) = Test2)
1284
+ not branch = coverity_scan
1285
+ not fork
1286
+ not tag =~ ^autobuild
1287
+ not tag is present
1288
+ not type = cron
1289
+ os = linux
1290
+ os = osx
1291
+ pull_request
1292
+ pull_request = false
1293
+ repo != apache/thrift
1294
+ repo != percona/percona-server OR repo = percona/percona-server AND type IN (push, cron)
1295
+ repo = 2m/sssio
1296
+ repo = 2m/sssio AND tag =~ ^v
1297
+ repo = Azure/azure-cli
1298
+ repo = Azure/azure-cli and type = push
1299
+ repo = Azure/azure-cli-extensions and branch = master and type = cron
1300
+ repo = Azure/azure-cli-extensions and branch = master and type = push
1301
+ repo = ZFFramework/ZFFramework AND branch = master
1302
+ repo = apache/thrift
1303
+ repo = arvidn/libtorrent
1304
+ repo = boostorg/uuid and branch = develop
1305
+ repo = camptocamp/c2cgeoportal
1306
+ repo = derekbekoe/azure-cli-extensions and branch = ext-docs and type = push
1307
+ repo = derekbekoe/azure-cli-extensions and type = push
1308
+ repo = gzm55/parent-repositories-maven-extension AND branch = master AND type != pull_request
1309
+ repo = gzm55/parent-repositories-maven-extension AND tag =~ ^parent-repositories-extension-[0-9]+(\.[0-9]+)+$
1310
+ repo = loderunner/ansible-clang AND branch = master
1311
+ repo = sigo/console-log-hiring and branch = master and type = push
1312
+ repo = sigo/semantic-release-test3 and branch = master and type in (push, api, cron)
1313
+ repo == quicktype/quicktype AND branch == master AND type IN (push, api, cron)
1314
+ repo =~ ^JimiC AND branch = docker
1315
+ repo =~ ^JimiC AND branch = master AND NOT tag IS present AND type != pull_request
1316
+ repo =~ ^JimiC AND branch = master AND NOT tag IS present AND type != pull_request AND NOT env(TAG) IS present
1317
+ repo =~ ^JimiC AND branch = master AND NOT tag IS present AND type != pull_request AND NOT env(TARGET) IS present
1318
+ repo =~ ^JimiC AND branch = master AND NOT tag IS present AND type != pull_request AND NOT env(VSI_TAG) IS present
1319
+ repo =~ ^JimiC AND branch = master AND env(TARGET) = vsi AND NOT env(TAG) IS present
1320
+ repo =~ ^JimiC AND branch = master AND env(TARGET) = vsi AND type = api AND NOT env(TAG) IS present
1321
+ repo =~ ^JimiC AND branch = master AND env(VSI_TAG) = latest AND type = api
1322
+ repo =~ ^JimiC AND branch = master AND type = api AND NOT env(TAG) IS present
1323
+ repo =~ ^JimiC AND branch = master AND type = push AND NOT tag IS present
1324
+ repo =~ ^JimiC AND env(VSI_TAG) =~ ^[0-9.]+-*[a-zA-Z0-9]*
1325
+ repo =~ ^JimiC AND env(VSI_TAG) =~ ^[0-9.]+-*[a-zA-Z0-9]* AND type = api
1326
+ repo =~ ^JimiC AND env(VSI_TAG) =~ ^latest|[0-9.]+-*[a-zA-Z0-9]* AND type = api
1327
+ repo =~ ^vscode-icons AND branch = master
1328
+ repo =~ ^vscode-icons AND branch = master AND NOT tag IS present AND type != pull_request AND NOT env(VSI_TAG) IS present
1329
+ repo =~ ^vscode-icons AND branch = master AND NOT tag IS present AND type = push
1330
+ repo =~ ^vscode-icons AND branch = master AND type != pull_request AND NOT tag IS present AND NOT env(TARGET) IS present
1331
+ repo =~ ^vscode-icons AND branch = master AND type = push
1332
+ repo =~ ^vscode-icons AND branch = master AND type = push AND NOT tag IS present
1333
+ repo =~ ^vscode-icons AND env(VSI_TAG) =~ ^latest|[0-9.]+-*[a-zA-Z0-9]* AND type = api
1334
+ repo =~ ^vscode-icons AND tag IS present AND type != pull_request AND NOT env(VSI_TAG) IS present
1335
+ repo =~ ^vscode-icons AND tag IS present AND type = push
1336
+ sender != RQF7_bot
1337
+ sender != RQF_bot
1338
+ sender != Travis
1339
+ sender != ^weecologydeploy$
1340
+ sender != traviscibot
1341
+ sender !~ bot$
1342
+ sender = rslifka
1343
+ sender =~ ^.*$
1344
+ sender =~ ^alrr.*$
1345
+ tag
1346
+ tag != "-fdroid$"
1347
+ tag != autobuild
1348
+ tag != env(TRAVIS_TAG)
1349
+ tag != master-snapshot
1350
+ tag != master-snapshot AND tag !~ ^untagged
1351
+ tag = submit
1352
+ tag =~ .*
1353
+ tag =~ .*beta.*
1354
+ tag =~ .+
1355
+ tag =~ /^release-.*$/
1356
+ tag =~ /release/ OR tag IS blank
1357
+ tag =~ 0.
1358
+ tag =~ [0-9]+\.[0-9]+\.[0-9]+
1359
+ tag =~ [0-9]+\.[0-9]+\.[0-9]+ OR type = pull_request
1360
+ tag =~ ^((?!-\w).)*$
1361
+ tag =~ ^(?!\s*$).+
1362
+ tag =~ ^*-macos$
1363
+ tag =~ ^.*-v[0-9]+\.[0-9]+.*$
1364
+ tag =~ ^.+$
1365
+ tag =~ ^0
1366
+ tag =~ ^@dev-*
1367
+ tag =~ ^@dev-* OR (branch = production AND type = pull_request)
1368
+ tag =~ ^[0-9]
1369
+ tag =~ ^[0-9]+\.[0-9]+\.[0-9]+
1370
+ tag =~ ^[0-9]\.[0-9]\.[0-9]$
1371
+ tag =~ ^\d
1372
+ tag =~ ^\d+(\.\d+)+(-.*)?
1373
+ tag =~ ^\d+(\.\d+)+(-.*)? OR branch = travisbuilds-selenium
1374
+ tag =~ ^\d+(\.\d+)+(-.*)? OR tag = staging
1375
+ tag =~ ^\d+\.\d+\.\d+$
1376
+ tag =~ ^\d+\.\d+\.\d+-p\d+$
1377
+ tag =~ ^\d+\.\d+\.\d+-p\d+$ AND type != pull_request
1378
+ tag =~ ^\d.\d.\d
1379
+ tag =~ ^android_
1380
+ tag =~ ^deploy-.*$
1381
+ tag =~ ^desktop-v-
1382
+ tag =~ ^eva
1383
+ tag =~ ^gatsby@.*
1384
+ tag =~ ^ios_
1385
+ tag =~ ^orderwell-v([0-9]+\.)*[0-9]+-RC[0-9]*$
1386
+ tag =~ ^orderwell-v([0-9]+\.)*[0-9]+-release$
1387
+ tag =~ ^prerelease_
1388
+ tag =~ ^release-
1389
+ tag =~ ^release-.*$
1390
+ tag =~ ^release\_v.*-.*
1391
+ tag =~ ^release_
1392
+ tag =~ ^ross
1393
+ tag =~ ^smarti- AND type = push
1394
+ tag =~ ^v
1395
+ tag =~ ^v AND fork = false
1396
+ tag =~ ^v OR type in (push, cron)
1397
+ tag =~ ^v(\d\.){0,2}\d
1398
+ tag =~ ^v*.*.*
1399
+ tag =~ ^v.*
1400
+ tag =~ ^v.*$
1401
+ tag =~ ^v0
1402
+ tag =~ ^v1
1403
+ tag =~ ^v2
1404
+ tag =~ ^v2\.\d+(\.\d+)?$
1405
+ tag =~ ^v8 AND type = push
1406
+ tag =~ ^v?([0-9])*\.[0-9]*\.[0-9]*(-\w+)?$
1407
+ tag =~ ^v[0-9.]+$ OR branch != master
1408
+ tag =~ ^v[0-9]
1409
+ tag =~ ^v[0-9]+.[0-9]+.[0-9]+(-alpha|-beta)?$
1410
+ tag =~ ^v[0-9]+\.
1411
+ tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$
1412
+ tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+(-.+)?$
1413
+ tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta|rc)\.[0-9]+$
1414
+ tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+-(alpha|beta|rc)\.[0-9]+$ OR tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+$
1415
+ tag =~ ^v[0-9]\.[0-9]
1416
+ tag =~ ^v[0-9]\.[0-9]\.[0-9]$
1417
+ tag =~ ^v[0-9]\.[0-9]\.[0-9]-rc[0-9]$
1418
+ tag =~ ^v[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{1,2}$
1419
+ tag =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$
1420
+ tag =~ ^v[1-9]
1421
+ tag =~ ^v\d
1422
+ tag =~ ^v\d AND type = push
1423
+ tag =~ ^v\d+
1424
+ tag =~ ^v\d+(\.\d+)+
1425
+ tag =~ ^v\d+(\.\d+)+(-.*)?
1426
+ tag =~ ^v\d+(\.\d+)+(-.*)? OR branch = travisbuilds-selenium
1427
+ tag =~ ^v\d+\.\d+(\.\d+)?$
1428
+ tag =~ ^v\d+\.\d+\.\d+
1429
+ tag =~ ^v\d+\.\d+\.\d+$
1430
+ tag =~ ^v\d+\.\d+\.\d+-rc\d+$
1431
+ tag =~ ^v\d+\.\d+\.\d+\-\d+$
1432
+ tag =~ ^v\d+\.\d+\.\d+\-dev.\d+$
1433
+ tag =~ ^v\d.*
1434
+ tag =~ ^v\d.\d.\d
1435
+ tag =~ ^version_code/ OR (tag IS NOT present)
1436
+ tag =~ ^version_code/ OR tag IS NOT present
1437
+ tag =~ ^zmobile-v([0-9]+\.)*[0-9]+-RC[0-9]*$
1438
+ tag =~ ^zmobile-v([0-9]+\.)*[0-9]+-release$
1439
+ tag IS NOT blank
1440
+ tag IS NOT present
1441
+ tag IS NOT present AND $COVERALLS_REPO_TOKEN != '' AND branch =~ ^v[0-9]+\.x\.x$ AND repo = 'sociomantic-tsunami/libdrizzle-redux'
1442
+ tag IS NOT present and type IN (push)
1443
+ tag IS PRESENT
1444
+ tag IS blank
1445
+ tag IS blank AND NOT (type IN (push) AND branch = master)
1446
+ tag IS blank AND NOT type IN (push)
1447
+ tag IS blank AND branch = master
1448
+ tag IS blank AND branch = master AND type != pull_request
1449
+ tag IS blank AND type != pull_request
1450
+ tag IS blank AND type = pull_request
1451
+ tag IS blank AND type = push
1452
+ tag IS blank AND type = push AND branch = master
1453
+ tag IS blank AND type IN (pull_request, push)
1454
+ tag IS blank OR tag = 7.6.0
1455
+ tag IS blank OR tag = 7.6.7
1456
+ tag IS blank OR tag = 7.7.0
1457
+ tag IS blank OR tag = 7.7.4
1458
+ tag IS blank OR tag = 7.8.0
1459
+ tag IS blank OR tag = 7.8.0-SNAPSHOT
1460
+ tag IS blank OR tag = 7.8.0-alpha4
1461
+ tag IS present
1462
+ tag IS present AND NOT tag =~ \+d2$
1463
+ tag IS present AND repo = camptocamp/ngeo
1464
+ tag IS present AND tag != "-fdroid$"
1465
+ tag IS present AND tag =~ ^(?:[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,})(?:(-(alpha|beta|rc)\.[0-9]{1,}){1,})?$
1466
+ tag IS present AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+
1467
+ tag IS present AND tag =~ ^v[0-9]+\.[0-9]+\.[0-9]+ AND $BINTRAY_USER != '' AND $BINTRAY_KEY != ''
1468
+ tag IS present AND type = push
1469
+ tag IS present AND type = push AND tag =~ ^v
1470
+ tag IS present OR ( branch = master AND pull_request IS false )
1471
+ tag IS present OR ( branch = master AND type != pull_request )
1472
+ tag IS present OR (branch = master AND type != pull_request)
1473
+ tag IS present OR branch = master
1474
+ tag IS present OR branch = master OR type IN (pull_request)
1475
+ tag IS present OR branch =~ ^v[0-9]+\.(x|[0-9]+)\.x$ AND NOT type IN (pull_request) AND repo = sociomantic-tsunami/libdrizzle-redux
1476
+ tag IS present OR type = pull_request
1477
+ tag IS present and branch IS present
1478
+ tag is blank
1479
+ tag is present
1480
+ tag or branch = master
1481
+ tag ~= ^(stable|beta|future)/
1482
+ tag ~= ^v
1483
+ tags = true
1484
+ tags =rue
1485
+ tags IS blank
1486
+ true
1487
+ type != api
1488
+ type != cron
1489
+ type != cron AND type != api
1490
+ type != cron AND type != pull_request
1491
+ type != cron and branch = master
1492
+ type != pull-request AND branch = master
1493
+ type != pull_request
1494
+ type != pull_request AND ( branch = release OR branch = master OR branch =~ ^release-(\d).(\d).(\d)$ )
1495
+ type != pull_request AND ( branch = release OR branch =~ ^release-(\d).(\d).(\d)$ )
1496
+ type != pull_request AND ( branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$ )
1497
+ type != pull_request AND (branch =~ ^release$ OR branch =~ ^release-(\d).(\d).(\d)$)
1498
+ type != pull_request AND (branch =~ ^release$ OR branch =~ ^release-)
1499
+ type != pull_request AND (head_branch =~ ^release/.* OR branch =~ ^release/.*)
1500
+ type != pull_request AND (head_branch =~ ^release/major/.* OR branch =~ ^release/major/.*)
1501
+ type != pull_request AND (head_branch =~ ^release/minor/.* OR branch =~ ^release/minor/.)
1502
+ type != pull_request AND (head_branch =~ ^release/minor/.* OR branch =~ ^release/minor/.*)
1503
+ type != pull_request AND (head_branch =~ ^release/patch/.* OR branch =~ ^release/patch/.*)
1504
+ type != pull_request AND (tag IS present OR branch IN (master, edge))
1505
+ type != pull_request AND (tag IS present OR branch IN (master, edge, app-shell_travis-testing-mc))
1506
+ type != pull_request AND branch = master
1507
+ type != pull_request AND branch = master AND NOT env(RELEASE_ENVIRONMENT) IS present
1508
+ type != pull_request AND branch IN (docker-and-kubernetes-deployment-updates)
1509
+ type != pull_request AND branch IN (master, develop)
1510
+ type != pull_request AND fork = false
1511
+ type != pull_request AND tag IS blank
1512
+ type != pull_request AND tag IS present
1513
+ type != pull_request AND type != cron
1514
+ type != pull_request OR (type == pull_request AND head_branch == not_a_real_branch)
1515
+ type != pull_request OR branch =~ not-the-branch-name
1516
+ type != pull_request OR head_branch = fix-hdfs-travi
1517
+ type != pull_request OR head_branch = fix-hdfs-travis
1518
+ type != pull_request OR head_branch == not_a_real_branch
1519
+ type != pull_request OR head_branch =~ __TEST_HDFS__
1520
+ type != pull_request OR head_branch =~ hdfs-travis
1521
+ type != pull_request OR head_branch =~ not-the-branch-name
1522
+ type != pull_request OR type != pull_request
1523
+ type != pull_request and (branch =~ ^(v1\.\d+\.x|master)$ or tag IS present)
1524
+ type != pull_request and branch =~ ^(v1\.\d+\.x|master)$
1525
+ type != push
1526
+ type !=cron
1527
+ type = api
1528
+ type = api AND branch = master
1529
+ type = api AND branch = master AND repo = fmbg/ingress-nginx
1530
+ type = api AND branch = master AND repo = harborfront/kubernetes-ingress
1531
+ type = api AND branch = master AND repo = kubernetes/ingress-nginx
1532
+ type = api AND env(TRAVIS_API_TYPE) = nightly
1533
+ type = api OR branch = 'feature/cypress-tests' OR tag IS present
1534
+ type = cron
1535
+ type = cron OR (env(TEST_SQLITE) IS true)
1536
+ type = cron OR branch = master OR branch =~ ^android
1537
+ type = cron OR env(TEST_SQLITE)
1538
+ type = cron OR env(TEST_SQLITE) IS true
1539
+ type = cron OR env(TEST_SQLITE) ~= ^true$
1540
+ type = cron OR tag =~ ^v
1541
+ type = cron OR tag IS present
1542
+ type = cron OR tag is present
1543
+ type = cron OR type = api
1544
+ type = pr or branch = master
1545
+ type = pr or branch = master or NOT branch =~ ^docs
1546
+ type = pull_request
1547
+ type = pull_request AND branch = master
1548
+ type = pull_request AND branch = staging
1549
+ type = pull_request AND sender != snappy-m-o
1550
+ type = pull_request OR (type = push AND NOT branch = master)
1551
+ type = pull_request OR branch = auto
1552
+ type = pull_request OR branch = llvm-6-test
1553
+ type = pull_request OR branch = master
1554
+ type = pull_request OR branch = staging OR branch = trying OR branch =~ /^v\d+/
1555
+ type = pull_request OR branch = travis-conditionals-bug
1556
+ type = pull_request OR branch = try
1557
+ type = pull_request OR branch = try OR branch = auto
1558
+ type = pull_request OR branch =~ ^(master|development)$
1559
+ type = pull_request OR branch IN (develop, release, master)
1560
+ type = pull_request OR branch IN (master, development)
1561
+ type = pull_request OR branch in (master, travis-conditional-build)
1562
+ type = pull_request OR env(PRE_COMMIT_MESSAGE) =~ build-web
1563
+ type = pull_request OR tag IS present
1564
+ type = pull_request OR type = cron
1565
+ type = pull_request and sender = "alrra"
1566
+ type = pull_request and sender = "greenkeeper[bot]"
1567
+ type = push
1568
+ type = push AND (NOT tag =~ .{2,}$) AND (NOT type = pull_request)
1569
+ type = push AND (branch = dev OR branch = master)
1570
+ type = push AND (tag =~ ^v8 OR branch IN (master, neon, argon))
1571
+ type = push AND (tag =~ ^v[0-9].[0-9].[0-9]$)
1572
+ type = push AND (tag =~ ^v[0-9].[0-9].[0-9]-)
1573
+ type = push AND NOT (branch = develop)
1574
+ type = push AND NOT tag
1575
+ type = push AND NOT tag IS present AND branch = master
1576
+ type = push AND NOT type = pull_request
1577
+ type = push AND branch !~ ^(master|development)$
1578
+ type = push AND branch = RED-1180
1579
+ type = push AND branch = WI-194
1580
+ type = push AND branch = beta
1581
+ type = push AND branch = chrome-mobile
1582
+ type = push AND branch = delete-old-code
1583
+ type = push AND branch = deploy
1584
+ type = push AND branch = develop
1585
+ type = push AND branch = email-box
1586
+ type = push AND branch = fix-ci-travis AND repo = Shopify/ingress
1587
+ type = push AND branch = hash
1588
+ type = push AND branch = issue.npm-publish
1589
+ type = push AND branch = jk-header-2017-11-26
1590
+ type = push AND branch = jk-header-2017-12-01
1591
+ type = push AND branch = jk-landing-page-2017-11-22
1592
+ type = push AND branch = jk-landing-page-fixes-2017-12-08
1593
+ type = push AND branch = jk-landing-page-js-2017-11-22
1594
+ type = push AND branch = jk-test-test
1595
+ type = push AND branch = jk-thankyou2-changes-2017-11-20
1596
+ type = push AND branch = master
1597
+ type = push AND branch = master AND platform = Linux
1598
+ type = push AND branch = master AND repo = Shopify/ingress
1599
+ type = push AND branch = master AND repo = camptocamp/ngeo
1600
+ type = push AND branch = mt-mypy-selenium
1601
+ type = push AND branch = mt-new-give
1602
+ type = push AND branch = tempMaster
1603
+ type = push AND branch = tempMaster AND platform = Linux
1604
+ type = push AND branch = wheredid
1605
+ type = push AND branch IN (1.x, 2.x)
1606
+ type = push AND branch IN (dev1, master, staging, rc)
1607
+ type = push AND branch IN (master, develop)
1608
+ type = push AND branch IN (master, pre-merge)
1609
+ type = push AND branch IN (master, production)
1610
+ type = push AND branch IN (master, staging, beta, develop, preview)
1611
+ type = push AND branch IN (stable/ultra01-06, stable/ultra01-03)
1612
+ type = push AND branch IN (staging, production)
1613
+ type = push AND branch NOT IN (master, development)
1614
+ type = push AND env(PEPE) = pepo
1615
+ type = push AND env(SONAR_TOKEN) IS present
1616
+ type = push AND repo = camptocamp/ngeo AND branch IS present
1617
+ type = push AND repo = deliveryhero/rps-webkick
1618
+ type = push AND tag
1619
+ type = push AND tag IS NOT present AND branch = master
1620
+ type = push AND tag IS NOT present AND branch = master AND env(TRAVIS_PULL_REQUEST) = false
1621
+ type = push AND tag IS present
1622
+ type = push OR type = cron
1623
+ type = push OR type = pull
1624
+ type = push and branch = master
1625
+ type = push and branch =~ ^greenkeeper\/.*-.*$
1626
+ type = push and tag =~ ^v0.4
1627
+ type == "cron"
1628
+ type == cron
1629
+ type == pull_request
1630
+ type == pull_request AND head_branch == not_a_real_branch
1631
+ type == push
1632
+ type == push AND (NOT branch IN (master, development))
1633
+ type IN (api, cron)
1634
+ type IN (api, cron) OR tag IS present
1635
+ type IN (api, pull_request, push)
1636
+ type IN (api, push)
1637
+ type IN (cron)
1638
+ type IN (cron, api)
1639
+ type IN (cron, api) OR tag IS present
1640
+ type IN (cron, push, pull_reqest)
1641
+ type IN (pull_request)
1642
+ type IN (pull_request) AND branch IN (master, staging)
1643
+ type IN (pull_request) AND branch IN (staging)
1644
+ type IN (pull_request) AND branch IN (staging, production)
1645
+ type IN (pull_request) AND branch in (staging)
1646
+ type IN (pull_request) OR branch = master
1647
+ type IN (pull_request) OR branch IN (master, development)
1648
+ type IN (pull_request) OR tag
1649
+ type IN (pull_request) OR tag IS present
1650
+ type IN (pull_request) OR tag IS present OR branch = master
1651
+ type IN (pull_request, cron)
1652
+ type IN (pull_request, cron) OR (type = push AND branch = master)
1653
+ type IN (pull_request, cron) OR (type IN (push) AND branch = master)
1654
+ type IN (pull_request, cron, push)
1655
+ type IN (pull_request, push)
1656
+ type IN (pull_request, tag)
1657
+ type IN (push)
1658
+ type IN (push) AND branch = master
1659
+ type IN (push) AND branch = prerelease
1660
+ type IN (push, api, cron)
1661
+ type IN (push, cron)
1662
+ type IN (push, cron) AND (NOT branch =~ [0-9]{8,})
1663
+ type IN (push, cron) AND (tag =~ ^$)
1664
+ type IN (push, cron) AND NOT (branch =~ [0-9]{8,})
1665
+ type IN (push, cron) OR env(TRAVIS_EVENT_TYPE) = cron
1666
+ type IN (push, cron, api)
1667
+ type IN (push, pull_request)
1668
+ type IN (push, pull_request) AND branch = master
1669
+ type NOT IN (api, cron)
1670
+ type NOT IN (cron)
1671
+ type NOT IN (pull_request)
1672
+ type NOT IN (pull_request) AND head_branch =~ ^release.*
1673
+ type NOT IN (pull_request, api, cron)
1674
+ type NOT IN (push, pull_request) AND (tag IS present AND (branch = master))
1675
+ type NOT IN (push, pull_request) AND tag IS present AND branch = master
1676
+ type in (cron)
1677
+ type in (pull_request)
1678
+ type in (pull_request) and (branch =~ ^greenkeeper\/.*-.*$)
1679
+ type in (push)
1680
+ type in (push) AND branch != master
1681
+ type in (push) and branch IN (master)
1682
+ type in (push) and branch IN (master,staging)
1683
+ type in (push, pull_request, api)
1684
+ type not in (pull_request)
1685
+ type=cron