Skip to content

Commit

Permalink
chore: update CircleCI to xcode 13.4.1
Browse files Browse the repository at this point in the history
Version 12.5.0 doesn't seem to be supported anymore, hence upgrade to the
latest non-beta release.

Simulators for iOS (which we don't need) are deleted, so that there's enough
space for the Filecoin params.
  • Loading branch information
vmx committed Aug 12, 2022
1 parent 380d643 commit 52fdb0f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -273,11 +273,14 @@ jobs:
command: cargo +$(cat rust-toolchain) clippy --all-targets --workspace -- -D warnings
test_darwin:
macos:
xcode: "12.5.0"
xcode: "13.4.1"
working_directory: ~/crate
resource_class: large
environment: *setup-env
steps:
- run:
name: Delete simulators for more free disk space
command: sudo rm -rf /Library/Developer/CoreSimulator/Profiles/Runtimes/
- checkout
- run:
name: Install hwloc with Homebrew
Expand Down Expand Up @@ -354,7 +357,7 @@ commands:
- run: uname > os.txt
- save_cache:
name: "Save parameter cache"
key: proof-params-v28-k-{{ checksum "os.txt" }}-{{ checksum "filecoin-proofs/parameters.json" }}
key: proof-params-v28-l-{{ checksum "os.txt" }}-{{ checksum "filecoin-proofs/parameters.json" }}
paths:
- "/tmp/paramcache.awesome"
- "/tmp/filecoin-proof-parameters/"
Expand All @@ -364,7 +367,7 @@ commands:
- run: uname > os.txt
- restore_cache:
name: "Restore parameter cache"
key: proof-params-v28-k-{{ checksum "os.txt" }}-{{ checksum "filecoin-proofs/parameters.json" }}
key: proof-params-v28-l-{{ checksum "os.txt" }}-{{ checksum "filecoin-proofs/parameters.json" }}

workflows:
version: 2.1
Expand Down

0 comments on commit 52fdb0f

Please sign in to comment.