Skip to content

Commit a1df344

Browse files
authored
Merge pull request #2031 from bugsnag/release/v7.22.1
Release v7.22.1
2 parents bd72a11 + 7b5035b commit a1df344

27 files changed

+8081
-11595
lines changed

.buildkite/basic/browser-pipeline.yml

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ steps:
1717
- docker-compose#v4.12.0:
1818
push:
1919
- browser-maze-runner-bb:855461928731.dkr.ecr.us-west-1.amazonaws.com/js:ci-browser-${BRANCH_NAME}
20+
retry:
21+
automatic:
22+
- exit_status: "*"
23+
limit: 1
2024

2125
- label: ":docker: Maze Runner image - BrowserStack browsers"
2226
key: "browser-maze-runner-bs"
@@ -33,6 +37,10 @@ steps:
3337
- docker-compose#v4.12.0:
3438
push:
3539
- browser-maze-runner-bs:855461928731.dkr.ecr.us-west-1.amazonaws.com/js:ci-browser-${BRANCH_NAME}
40+
retry:
41+
automatic:
42+
- exit_status: "*"
43+
limit: 1
3644

3745
#
3846
# BitBar tests
@@ -58,8 +66,8 @@ steps:
5866
artifacts#v1.5.0:
5967
upload:
6068
- "./test/browser/maze_output/failed/**/*"
61-
concurrency: 5
62-
concurrency_group: "bitbar-web"
69+
concurrency: 25
70+
concurrency_group: "bitbar"
6371
concurrency_method: eager
6472

6573
# Skipped pending PLAT-10590
@@ -85,8 +93,8 @@ steps:
8593
# artifacts#v1.5.0:
8694
# upload:
8795
# - "./test/browser/maze_output/failed/**/*"
88-
# concurrency: 5
89-
# concurrency_group: "bitbar-web"
96+
# concurrency: 25
97+
# concurrency_group: "bitbar"
9098
# concurrency_method: eager
9199

92100
- label: ":bitbar: ie_11 Browser tests"
@@ -106,8 +114,8 @@ steps:
106114
artifacts#v1.5.0:
107115
upload:
108116
- "./test/browser/maze_output/failed/**/*"
109-
concurrency: 5
110-
concurrency_group: "bitbar-web"
117+
concurrency: 25
118+
concurrency_group: "bitbar"
111119
concurrency_method: eager
112120
env:
113121
HOST: "localhost" # IE11 needs the host set to localhost for some reason

.buildkite/basic/node-pipeline.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ steps:
1818
- docker-compose#v4.12.0:
1919
push:
2020
- node-maze-runner:855461928731.dkr.ecr.us-west-1.amazonaws.com/js:ci-node-${BRANCH_NAME}
21+
retry:
22+
automatic:
23+
- exit_status: "*"
24+
limit: 1
2125

2226
- label: ":node: Node {{matrix}}"
2327
depends_on: "node-maze-runner-image"

.buildkite/basic/react-native-android-pipeline.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ steps:
1515
cache-from: react-native-android-builder:855461928731.dkr.ecr.us-west-1.amazonaws.com/js:ci-${BRANCH_NAME}
1616
- docker-compose#v4.12.0:
1717
push: react-native-android-builder:855461928731.dkr.ecr.us-west-1.amazonaws.com/js:ci-${BRANCH_NAME}
18+
retry:
19+
automatic:
20+
- exit_status: "*"
21+
limit: 1
1822

1923
#
2024
# Test fixtures
@@ -34,6 +38,10 @@ steps:
3438
run: react-native-android-builder
3539
artifact_paths:
3640
- build/rn0.72-old-arch.apk
41+
retry:
42+
automatic:
43+
- exit_status: "*"
44+
limit: 1
3745

3846
- label: ":android: Build RN 0.72 (New Arch) apk"
3947
key: "rn-0-72-new-arch-apk"
@@ -50,6 +58,10 @@ steps:
5058
run: react-native-android-builder
5159
artifact_paths:
5260
- build/rn0.72-new-arch.apk
61+
retry:
62+
automatic:
63+
- exit_status: "*"
64+
limit: 1
5365

5466
#
5567
# End-to-end tests
@@ -77,7 +89,7 @@ steps:
7789
SKIP_NAVIGATION_SCENARIOS: "true"
7890
HERMES: "true"
7991
concurrency: 25
80-
concurrency_group: "bitbar-app"
92+
concurrency_group: "bitbar"
8193
concurrency_method: eager
8294

8395
- label: ":bitbar: :android: RN 0.72 (New Arch) Android 12 end-to-end tests"
@@ -103,5 +115,5 @@ steps:
103115
SKIP_NAVIGATION_SCENARIOS: "true"
104116
HERMES: "true"
105117
concurrency: 25
106-
concurrency_group: "bitbar-app"
118+
concurrency_group: "bitbar"
107119
concurrency_method: eager

.buildkite/basic/react-native-ios-pipeline.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ steps:
2020
artifact_paths: build/rn0.72-old-arch.ipa
2121
commands:
2222
- npm run test:build-react-native-ios
23+
retry:
24+
automatic:
25+
- exit_status: "*"
26+
limit: 1
2327

2428
- label: ":ios: Build RN 0.72 (New Arch) ipa"
2529
key: "rn-0-72-new-arch-ipa"
@@ -35,6 +39,10 @@ steps:
3539
artifact_paths: build/rn0.72-new-arch.ipa
3640
commands:
3741
- npm run test:build-react-native-ios
42+
retry:
43+
automatic:
44+
- exit_status: "*"
45+
limit: 1
3846

3947
#
4048
# End-to-end tests

.buildkite/full/react-native-android-pipeline.full.yml

Lines changed: 55 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@ steps:
1919
run: react-native-android-builder
2020
artifact_paths:
2121
- build/rn0.60.apk
22+
retry:
23+
automatic:
24+
- exit_status: "*"
25+
limit: 1
2226

2327
- label: ":android: Build RN 0.66 apk"
2428
key: "rn-0-66-apk"
@@ -33,6 +37,10 @@ steps:
3337
run: react-native-android-builder
3438
artifact_paths:
3539
- build/rn0.66.apk
40+
retry:
41+
automatic:
42+
- exit_status: "*"
43+
limit: 1
3644

3745
- label: ":android: Build RN 0.67 apk"
3846
key: "rn-0-67-apk"
@@ -47,6 +55,10 @@ steps:
4755
run: react-native-android-builder
4856
artifact_paths:
4957
- build/rn0.67.apk
58+
retry:
59+
automatic:
60+
- exit_status: "*"
61+
limit: 1
5062

5163
- label: ":android: Build RN 0.68 Hermes apk"
5264
key: "rn-0-68-hermes-apk"
@@ -61,6 +73,10 @@ steps:
6173
run: react-native-android-builder
6274
artifact_paths:
6375
- build/rn0.68-hermes.apk
76+
retry:
77+
automatic:
78+
- exit_status: "*"
79+
limit: 1
6480

6581
- label: ":android: Build RN 0.69 apk"
6682
key: "rn-0-69-apk"
@@ -75,6 +91,10 @@ steps:
7591
run: react-native-android-builder
7692
artifact_paths:
7793
- build/rn0.69.apk
94+
retry:
95+
automatic:
96+
- exit_status: "*"
97+
limit: 1
7898

7999
- label: ":android: Build RN 0.71 (Old Arch) apk"
80100
key: "rn-0-71-old-arch-apk"
@@ -91,6 +111,10 @@ steps:
91111
run: react-native-android-builder
92112
artifact_paths:
93113
- build/rn0.71-old-arch.apk
114+
retry:
115+
automatic:
116+
- exit_status: "*"
117+
limit: 1
94118

95119
- label: ":android: Build RN 0.71 (New Arch) apk"
96120
key: "rn-0-71-new-arch-apk"
@@ -107,6 +131,10 @@ steps:
107131
run: react-native-android-builder
108132
artifact_paths:
109133
- build/rn0.71-new-arch.apk
134+
retry:
135+
automatic:
136+
- exit_status: "*"
137+
limit: 1
110138

111139
- label: ":android: Build react-navigation 0.60 apk"
112140
key: "react-navigation-0-60-apk"
@@ -123,6 +151,10 @@ steps:
123151
run: react-native-android-builder
124152
artifact_paths:
125153
- build/r_navigation_0.60.apk
154+
retry:
155+
automatic:
156+
- exit_status: "*"
157+
limit: 1
126158

127159
- label: ":android: Build react-navigation 0.69 apk"
128160
key: "react-navigation-0-69-apk"
@@ -139,6 +171,10 @@ steps:
139171
run: react-native-android-builder
140172
artifact_paths:
141173
- build/r_navigation_0.69.apk
174+
retry:
175+
automatic:
176+
- exit_status: "*"
177+
limit: 1
142178

143179
- label: ":android: Build react-native-navigation 0.60 apk"
144180
key: "react-native-navigation-0-60-apk"
@@ -155,6 +191,10 @@ steps:
155191
run: react-native-android-builder
156192
artifact_paths:
157193
- build/r_native_navigation_0.60.apk
194+
retry:
195+
automatic:
196+
- exit_status: "*"
197+
limit: 1
158198

159199
- label: ":android: Build react-native-navigation 0.66 apk"
160200
key: "react-native-navigation-0-66-apk"
@@ -171,6 +211,10 @@ steps:
171211
run: react-native-android-builder
172212
artifact_paths:
173213
- build/r_native_navigation_0.66.apk
214+
retry:
215+
automatic:
216+
- exit_status: "*"
217+
limit: 1
174218

175219
#
176220
# End-to-end tests
@@ -197,7 +241,7 @@ steps:
197241
env:
198242
SKIP_NAVIGATION_SCENARIOS: "true"
199243
concurrency: 25
200-
concurrency_group: 'bitbar-app'
244+
concurrency_group: 'bitbar'
201245
concurrency_method: eager
202246

203247
- label: ":bitbar: :android: RN 0.66 Android end-to-end tests"
@@ -222,7 +266,7 @@ steps:
222266
env:
223267
SKIP_NAVIGATION_SCENARIOS: "true"
224268
concurrency: 25
225-
concurrency_group: 'bitbar-app'
269+
concurrency_group: 'bitbar'
226270
concurrency_method: eager
227271

228272
- label: ":bitbar: :android: RN 0.67 Android end-to-end tests"
@@ -248,7 +292,7 @@ steps:
248292
SKIP_NAVIGATION_SCENARIOS: "true"
249293
HERMES: "true"
250294
concurrency: 25
251-
concurrency_group: 'bitbar-app'
295+
concurrency_group: 'bitbar'
252296
concurrency_method: eager
253297

254298
- label: ":bitbar: :android: RN 0.69 Android end-to-end tests"
@@ -274,7 +318,7 @@ steps:
274318
SKIP_NAVIGATION_SCENARIOS: "true"
275319
HERMES: "true"
276320
concurrency: 25
277-
concurrency_group: 'bitbar-app'
321+
concurrency_group: 'bitbar'
278322
concurrency_method: eager
279323

280324
- label: ":bitbar: :android: RN 0.68 (Hermes) Android end-to-end tests"
@@ -300,7 +344,7 @@ steps:
300344
SKIP_NAVIGATION_SCENARIOS: "true"
301345
HERMES: "true"
302346
concurrency: 25
303-
concurrency_group: 'bitbar-app'
347+
concurrency_group: 'bitbar'
304348
concurrency_method: eager
305349

306350
- label: ":bitbar: :android: RN 0.71 (Old Arch) Android 12 end-to-end tests"
@@ -326,7 +370,7 @@ steps:
326370
SKIP_NAVIGATION_SCENARIOS: "true"
327371
HERMES: "true"
328372
concurrency: 25
329-
concurrency_group: "bitbar-app"
373+
concurrency_group: "bitbar"
330374
concurrency_method: eager
331375

332376
- label: ":bitbar: :android: RN 0.71 (New Arch) Android 12 end-to-end tests"
@@ -352,7 +396,7 @@ steps:
352396
SKIP_NAVIGATION_SCENARIOS: "true"
353397
HERMES: "true"
354398
concurrency: 25
355-
concurrency_group: "bitbar-app"
399+
concurrency_group: "bitbar"
356400
concurrency_method: eager
357401

358402
- label: ":bitbar: :android: react-navigation 0.60 Android end-to-end tests"
@@ -376,7 +420,7 @@ steps:
376420
- --aws-public-ip
377421
- features/navigation.feature
378422
concurrency: 25
379-
concurrency_group: 'bitbar-app'
423+
concurrency_group: 'bitbar'
380424
concurrency_method: eager
381425

382426
- label: ":bitbar: :android: react-navigation 0.69 Android end-to-end tests"
@@ -400,7 +444,7 @@ steps:
400444
- --aws-public-ip
401445
- features/navigation.feature
402446
concurrency: 25
403-
concurrency_group: 'bitbar-app'
447+
concurrency_group: 'bitbar'
404448
concurrency_method: eager
405449

406450
- label: ":bitbar: :android: react-native-navigation 0.60 Android end-to-end tests"
@@ -424,7 +468,7 @@ steps:
424468
- --aws-public-ip
425469
- features/navigation.feature
426470
concurrency: 25
427-
concurrency_group: 'bitbar-app'
471+
concurrency_group: 'bitbar'
428472
concurrency_method: eager
429473

430474
- label: ":bitbar: :android: react-native-navigation 0.66 Android end-to-end tests"
@@ -448,5 +492,5 @@ steps:
448492
- --aws-public-ip
449493
- features/navigation.feature
450494
concurrency: 25
451-
concurrency_group: 'bitbar-app'
495+
concurrency_group: 'bitbar'
452496
concurrency_method: eager

0 commit comments

Comments
 (0)