Skip to content

Commit c61f6c3

Browse files
committed
fix: timeout
1 parent 9cc8fe1 commit c61f6c3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/e2e-android.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ jobs:
124124
arch: x86_64
125125
disable-animations: true
126126
working-directory: example
127-
script: yarn e2e:test:android-release --timeout 200000 --record-videos all --take-screenshots all --record-logs all --artifacts-location /mnt/artifacts
127+
script: yarn e2e:test:android-release --record-videos all --take-screenshots all --record-logs all --artifacts-location /mnt/artifacts
128128

129129
- name: Run tests attempt 2
130130
if: steps.attempt1.outcome != 'success'
@@ -140,7 +140,7 @@ jobs:
140140
arch: x86_64
141141
disable-animations: true
142142
working-directory: example
143-
script: yarn e2e:test:android-release --timeout 200000 --record-videos all --take-screenshots all --record-logs all --artifacts-location /mnt/artifacts
143+
script: yarn e2e:test:android-release --record-videos all --take-screenshots all --record-logs all --artifacts-location /mnt/artifacts
144144

145145
- name: Run tests attempt 3 (final)
146146
if: steps.attempt2.outcome != 'success'
@@ -154,7 +154,7 @@ jobs:
154154
arch: x86_64
155155
disable-animations: true
156156
working-directory: example
157-
script: yarn e2e:test:android-release --timeout 200000 --record-videos all --take-screenshots all --record-logs all --artifacts-location /mnt/artifacts
157+
script: yarn e2e:test:android-release --record-videos all --take-screenshots all --record-logs all --artifacts-location /mnt/artifacts
158158

159159
- uses: actions/upload-artifact@v4
160160
if: failure()

.github/workflows/e2e-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
working-directory: example
5252
run: |
5353
gem update cocoapods xcodeproj
54-
pod install --project-directory=ios || (rm -rf ~/Library/Caches/CocoaPods && pod cache clean --all && pod install --project-directory=ios)
54+
pod install --project-directory=ios || (rm -rf ~/Library/Caches/CocoaPods && pod cache clean --all && COCOAPODS_DISABLE_CHECKSUM=true pod install --project-directory=ios)
5555
5656
- name: Install applesimutils
5757
run: |

.github/workflows/mocha-ios.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
working-directory: example
7575
run: |
7676
gem update cocoapods xcodeproj
77-
pod install --project-directory=ios || (rm -rf ~/Library/Caches/CocoaPods && pod cache clean --all && pod install --project-directory=ios)
77+
pod install --project-directory=ios || (rm -rf ~/Library/Caches/CocoaPods && pod cache clean --all && COCOAPODS_DISABLE_CHECKSUM=true pod install --project-directory=ios)
7878
7979
- name: Install applesimutils
8080
run: |

0 commit comments

Comments
 (0)