@@ -229,6 +229,7 @@ task:
229
229
- dart --enable-asserts ./dev/bots/test.dart
230
230
231
231
- name : hostonly_devicelab_tests-0-linux
232
+ only_if : " $CIRRUS_PR != '' || $CIRRUS_BRANCH == 'master'" # https://github.com/flutter/flutter/issues/45453
232
233
environment :
233
234
# Some of the host-only devicelab tests are pretty involved and need a lot of RAM.
234
235
CPU : 2
@@ -237,6 +238,7 @@ task:
237
238
- dart --enable-asserts ./dev/bots/test.dart
238
239
239
240
- name : hostonly_devicelab_tests-1-linux
241
+ only_if : " $CIRRUS_PR != '' || $CIRRUS_BRANCH == 'master'" # https://github.com/flutter/flutter/issues/45453
240
242
environment :
241
243
# Some of the host-only devicelab tests are pretty involved and need a lot of RAM.
242
244
CPU : 2
@@ -245,6 +247,7 @@ task:
245
247
- dart --enable-asserts ./dev/bots/test.dart
246
248
247
249
- name : hostonly_devicelab_tests-2-linux
250
+ only_if : " $CIRRUS_PR != '' || $CIRRUS_BRANCH == 'master'" # https://github.com/flutter/flutter/issues/45453
248
251
environment :
249
252
# Some of the host-only devicelab tests are pretty involved and need a lot of RAM.
250
253
CPU : 2
@@ -253,6 +256,7 @@ task:
253
256
- dart --enable-asserts ./dev/bots/test.dart
254
257
255
258
- name : hostonly_devicelab_tests-3_last-linux
259
+ only_if : " $CIRRUS_PR != '' || $CIRRUS_BRANCH == 'master'" # https://github.com/flutter/flutter/issues/45453
256
260
environment :
257
261
# Some of the host-only devicelab tests are pretty involved and need a lot of RAM.
258
262
CPU : 2
@@ -399,22 +403,22 @@ task:
399
403
- dart --enable-asserts dev\bots\test.dart
400
404
401
405
- name : hostonly_devicelab_tests-0-windows
402
- only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || $CIRRUS_PR == ''" # https://github.com/flutter/flutter/issues/41941
406
+ only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || ( $CIRRUS_PR == '' && $CIRRUS_BRANCH == 'master') " # https://github.com/flutter/flutter/issues/41941 https://github.com/flutter/flutter/issues/45453
403
407
script :
404
408
- dart --enable-asserts ./dev/bots/test.dart
405
409
406
410
- name : hostonly_devicelab_tests-1-windows
407
- only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || $CIRRUS_PR == ''" # https://github.com/flutter/flutter/issues/41941
411
+ only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || ( $CIRRUS_PR == '' && $CIRRUS_BRANCH == 'master') " # https://github.com/flutter/flutter/issues/41941 https://github.com/flutter/flutter/issues/45453
408
412
script :
409
413
- dart --enable-asserts ./dev/bots/test.dart
410
414
411
415
- name : hostonly_devicelab_tests-2-windows
412
- only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || $CIRRUS_PR == ''" # https://github.com/flutter/flutter/issues/41941
416
+ only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || ( $CIRRUS_PR == '' && $CIRRUS_BRANCH == 'master') " # https://github.com/flutter/flutter/issues/41941 https://github.com/flutter/flutter/issues/45453
413
417
script :
414
418
- dart --enable-asserts ./dev/bots/test.dart
415
419
416
420
- name : hostonly_devicelab_tests-3_last-windows
417
- only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || $CIRRUS_PR == ''" # https://github.com/flutter/flutter/issues/41941
421
+ only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || ( $CIRRUS_PR == '' && $CIRRUS_BRANCH == 'master') " # https://github.com/flutter/flutter/issues/41941 https://github.com/flutter/flutter/issues/45453
418
422
script :
419
423
- dart --enable-asserts ./dev/bots/test.dart
420
424
@@ -512,25 +516,25 @@ task:
512
516
- dart --enable-asserts ./dev/bots/test.dart
513
517
514
518
- name : hostonly_devicelab_tests-0-macos
515
- only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || $CIRRUS_PR == ''" # https://github.com/flutter/flutter/issues/41940
519
+ only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || ( $CIRRUS_PR == '' && $CIRRUS_BRANCH == 'master') " # https://github.com/flutter/flutter/issues/41941 https://github.com/flutter/flutter/issues/45453
516
520
script :
517
521
- ulimit -S -n 2048 # https://github.com/flutter/flutter/issues/2976
518
522
- dart --enable-asserts ./dev/bots/test.dart
519
523
520
524
- name : hostonly_devicelab_tests-1-macos
521
- only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || $CIRRUS_PR == ''" # https://github.com/flutter/flutter/issues/41940
525
+ only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || ( $CIRRUS_PR == '' && $CIRRUS_BRANCH == 'master') " # https://github.com/flutter/flutter/issues/41941 https://github.com/flutter/flutter/issues/45453
522
526
script :
523
527
- ulimit -S -n 2048 # https://github.com/flutter/flutter/issues/2976
524
528
- dart --enable-asserts ./dev/bots/test.dart
525
529
526
530
- name : hostonly_devicelab_tests-2-macos
527
- only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || $CIRRUS_PR == ''" # https://github.com/flutter/flutter/issues/41940
531
+ only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || ( $CIRRUS_PR == '' && $CIRRUS_BRANCH == 'master') " # https://github.com/flutter/flutter/issues/41941 https://github.com/flutter/flutter/issues/45453
528
532
script :
529
533
- ulimit -S -n 2048 # https://github.com/flutter/flutter/issues/2976
530
534
- dart --enable-asserts ./dev/bots/test.dart
531
535
532
536
- name : hostonly_devicelab_tests-3_last-macos
533
- only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || $CIRRUS_PR == ''" # https://github.com/flutter/flutter/issues/41940
537
+ only_if : " changesInclude('.cirrus.yml', 'dev/**', 'bin/internal/**') || ( $CIRRUS_PR == '' && $CIRRUS_BRANCH == 'master') " # https://github.com/flutter/flutter/issues/41941 https://github.com/flutter/flutter/issues/45453
534
538
script :
535
539
- ulimit -S -n 2048 # https://github.com/flutter/flutter/issues/2976
536
540
- dart --enable-asserts ./dev/bots/test.dart
0 commit comments