Skip to content

Commit f9bdfd6

Browse files
committed
Fix gemlock file path
1 parent cba02dd commit f9bdfd6

File tree

2 files changed

+8
-348
lines changed

2 files changed

+8
-348
lines changed

Diff for: .circleci/config.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -157,13 +157,17 @@ jobs:
157157
command: yarn --pure-lockfile --non-interactive --cache-folder ~/.cache/yarn
158158
- save-cache: *cache_save_yarn
159159
- restore_cache:
160-
key: 1-gems-{{ checksum "Gemfile.lock" }}
161-
- run: cd example/ios && bundle check || bundle install --path vendor/bundle
160+
key: 1-gems-{{ checksum "example/ios/Gemfile.lock" }}
161+
- run:
162+
name: Install CocoaPods
163+
command: cd example/ios && bundle check || bundle install --path vendor/bundle
162164
- save_cache:
163-
key: 1-gems-{{ checksum "Gemfile.lock" }}
165+
key: 1-gems-{{ checksum "example/ios/Gemfile.lock" }}
164166
paths:
165167
- vendor/bundle
166-
- run: cd example/ios && bundle exec pod install
168+
- run:
169+
name: Install pod dependencies
170+
command: cd example/ios && bundle exec pod install
167171
- run:
168172
name: Build iOS app
169173
command: yarn build:e2e:ios

Diff for: example/ios/Podfile.lock

-344
This file was deleted.

0 commit comments

Comments
 (0)