Skip to content

Commit

Permalink
Use Xcode 13.2.1 for size_report on CI (#928)
Browse files Browse the repository at this point in the history
  • Loading branch information
mludowise-stripe authored Apr 14, 2022
1 parent d58ebb3 commit 4efdb32
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
18 changes: 7 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ commands:
- run: git clone --depth 1 "$CIRCLE_REPOSITORY_URL" --branch "$CIRCLE_BRANCH" .
- run: "bundle config set path 'vendor/bundle'"
- restore_cache:
key: v12-stp-bundle-xcode-132-cache # Update this if bundle dependencies or Xcode version change
key: v13-stp-bundle-xcode-132-cache # Update this if bundle dependencies or Xcode version change
- run: "bundle install"
- save_cache:
key: v12-stp-bundle-xcode-132-cache
key: v13-stp-bundle-xcode-132-cache
paths:
- vendor
prep_clone:
Expand All @@ -34,17 +34,17 @@ commands:
steps:
- run: "bundle config set path 'vendor/bundle'"
- restore_cache:
key: v12-stp-carthage-xcode-133-cache # Update this if Carthage dependencies or Xcode version change
key: v13-stp-carthage-xcode-133-cache # Update this if Carthage dependencies or Xcode version change
- restore_cache:
key: v12-stp-bundle-xcode-133-cache # Update this if bundle dependencies or Xcode version change
key: v13-stp-bundle-xcode-133-cache # Update this if bundle dependencies or Xcode version change
- run: "bundle install"
- run: "carthage bootstrap --platform iOS --configuration Release --no-use-binaries --cache-builds --use-xcframeworks"
- save_cache:
key: v12-stp-carthage-xcode-133-cache
key: v13-stp-carthage-xcode-133-cache
paths:
- Carthage
- save_cache:
key: v12-stp-bundle-xcode-133-cache
key: v13-stp-bundle-xcode-133-cache
paths:
- vendor
prep_environment:
Expand Down Expand Up @@ -80,14 +80,10 @@ executors:
macos:
xcode: 13.2.1
resource_class: macos.x86.medium.gen2
xcode-125-mac-executor:
macos:
xcode: 12.5.0
resource_class: macos.x86.medium.gen2

jobs:
size-report:
executor: xcode-125-mac-executor
executor: mac-executor

steps:
- macos/switch-ruby:
Expand Down
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ gem "mail"
gem "rubyzip"
gem "octokit"
gem "mime-types"
gem "CFPropertyList"
gem "sqlite3"

gem "jazzy", "~> 0.14.1"
gem "mustache", "~> 1.1.1"
Expand Down
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ PLATFORMS
ruby

DEPENDENCIES
CFPropertyList
cocoapods
colorize
fastlane
Expand All @@ -321,6 +322,7 @@ DEPENDENCIES
octokit
plist
rubyzip
sqlite3
xcode-install (~> 2.6)

BUNDLED WITH
Expand Down

0 comments on commit 4efdb32

Please sign in to comment.