@@ -150,6 +150,10 @@ jobs:
150
150
timeout-minutes : 15
151
151
steps :
152
152
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
153
+ - name : Increase ulimit
154
+ if : runner.os == 'macOS'
155
+ run : |
156
+ ulimit -n 10000
153
157
- uses : ./.github/actions/setup_node
154
158
with :
155
159
node-version : ${{ matrix.node }}
@@ -478,6 +482,10 @@ jobs:
478
482
contents : read
479
483
steps :
480
484
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
485
+ - name : Increase ulimit
486
+ if : runner.os == 'macOS'
487
+ run : |
488
+ ulimit -n 10000
481
489
- name : Run e2e deployment tests
482
490
uses : ./.github/actions/run_with_e2e_account
483
491
with :
@@ -526,6 +534,10 @@ jobs:
526
534
contents : read
527
535
steps :
528
536
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
537
+ - name : Increase ulimit
538
+ if : runner.os == 'macOS'
539
+ run : |
540
+ ulimit -n 10000
529
541
- name : Run e2e sandbox tests
530
542
uses : ./.github/actions/run_with_e2e_account
531
543
with :
@@ -554,6 +566,10 @@ jobs:
554
566
contents : read
555
567
steps :
556
568
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
569
+ - name : Increase ulimit
570
+ if : runner.os == 'macOS'
571
+ run : |
572
+ ulimit -n 10000
557
573
- uses : ./.github/actions/setup_node
558
574
with :
559
575
node-version : 18
@@ -612,6 +628,10 @@ jobs:
612
628
- resolve_inputs
613
629
steps :
614
630
- uses : actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # version 4.1.4
631
+ - name : Increase ulimit
632
+ if : runner.os == 'macOS'
633
+ run : |
634
+ ulimit -n 10000
615
635
- uses : ./.github/actions/setup_node
616
636
with :
617
637
node-version : ${{ matrix.node-version }}
@@ -644,6 +664,10 @@ jobs:
644
664
id-token : write
645
665
contents : read
646
666
steps :
667
+ - name : Increase ulimit
668
+ if : runner.os == 'macOS'
669
+ run : |
670
+ ulimit -n 10000
647
671
- name : Checkout aws-amplify/amplify-backend repo
648
672
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
649
673
- name : Run E2E flow tests with ${{ matrix.pkg-manager }}
0 commit comments