Skip to content

Commit 5e1aacd

Browse files
committed
fix: set COCOAPODS_DISABLE_CHECKSUM env var for iOS workflows
1 parent c75913c commit 5e1aacd

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/e2e-ios.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,11 @@ jobs:
5353

5454
- name: Install pods
5555
working-directory: example
56+
env:
57+
COCOAPODS_DISABLE_CHECKSUM: true
5658
run: |
5759
gem update cocoapods xcodeproj
58-
pod install --project-directory=ios || (rm -rf ~/Library/Caches/CocoaPods && pod cache clean --all && COCOAPODS_DISABLE_CHECKSUM=true pod install --project-directory=ios)
60+
pod install --project-directory=ios || (rm -rf ~/Library/Caches/CocoaPods && pod cache clean --all && pod install --project-directory=ios)
5961
6062
- name: Install applesimutils
6163
run: |

.github/workflows/mocha-ios.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,11 @@ jobs:
7676

7777
- name: Install pods
7878
working-directory: example
79+
env:
80+
COCOAPODS_DISABLE_CHECKSUM: true
7981
run: |
8082
gem update cocoapods xcodeproj
81-
pod install --project-directory=ios || (rm -rf ~/Library/Caches/CocoaPods && pod cache clean --all && COCOAPODS_DISABLE_CHECKSUM=true pod install --project-directory=ios)
83+
pod install --project-directory=ios || (rm -rf ~/Library/Caches/CocoaPods && pod cache clean --all && pod install --project-directory=ios)
8284
8385
- name: Install applesimutils
8486
run: |

0 commit comments

Comments
 (0)