Skip to content

Commit d831f8a

Browse files
committed
Bump circleci xcode environment to 12.1.0
1 parent 6ddd059 commit d831f8a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11

22
# Shared Xcode version between jobs
3-
xcode-version: &xcode-version "11.3.1"
3+
xcode-version: &xcode-version "12.0.1"
44

55
# This is the key that we use to store and restore our dependencies cache.
66
# It needs to be different anytime we add Pods, Gems, or npm packages.
77
# If something went wrong during a cache build, you can increase the cache version
88
# like this: 1-dependencies-... => 2-dependencies-...
9-
cache-key: &cache-key 3-dependencies-{{ checksum "Gemfile.lock" }}-{{ checksum "Podfile.lock" }}
9+
cache-key: &cache-key 4-dependencies-{{ checksum "Gemfile.lock" }}-{{ checksum "Podfile.lock" }}
1010

1111
# Environment that is shared between jobs
1212
shared-env: &shared-env
@@ -25,6 +25,9 @@ jobs:
2525
- checkout
2626
- restore_cache:
2727
key: *cache-key
28+
- run:
29+
name: Install bundler
30+
command: gem install bundler:1.17.3
2831
- run:
2932
name: Install Ruby bundle dependencies
3033
command: bundle check || bundle install

0 commit comments

Comments
 (0)