Skip to content

Commit

Permalink
bump cache
Browse files Browse the repository at this point in the history
  • Loading branch information
gkartalis committed Jan 7, 2025
1 parent 42f14a4 commit 305b03f
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ commands:
steps:
- node/install-packages:
pkg-manager: yarn
cache-version: v10
cache-version: v11
run-relay-compiler:
steps:
- run:
Expand All @@ -73,27 +73,27 @@ commands:
steps:
- restore_cache:
keys:
- v11-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
- v12-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
- run:
name: Bundle install
command: bundle check || bundle install
environment:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
- save_cache:
key: v11-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
key: v12-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
paths:
- .vendor
install-cocoapods:
steps:
- restore_cache:
keys:
- v26-pods-{{ checksum ".manifests/cocoapods" }}
- v27-pods-{{ checksum ".manifests/cocoapods" }}
- run:
name: Install Pods
command: cd ios; bundle exec pod check --ignore-dev-pods || bundle exec pod install; cd ..;
- save_cache:
key: v26-pods-{{ checksum ".manifests/cocoapods" }}
key: v27-pods-{{ checksum ".manifests/cocoapods" }}
paths:
- ios/Pods
# this changes after pod install because we don't install dev tools on CI
Expand All @@ -103,7 +103,7 @@ commands:
steps:
- restore_cache:
keys:
- v21-app_build_ios-{{ checksum ".manifests/app_build" }}
- v22-app_build_ios-{{ checksum ".manifests/app_build" }}
- run:
name: Download fonts from s3
command: ./scripts/setup/download-fonts
Expand All @@ -114,7 +114,7 @@ commands:
name: Build App
command: ./scripts/ci/ci-ios
- save_cache:
key: v21-app_build_ios-{{ checksum ".manifests/app_build" }}
key: v22-app_build_ios-{{ checksum ".manifests/app_build" }}
paths:
- derived_data
- node_modules/react-native-config
Expand All @@ -124,7 +124,7 @@ commands:
at: ../workspace
- restore_cache:
keys:
- v13-test-success-{{ checksum "../workspace/.manifests/android_native" }}
- v14-test-success-{{ checksum "../workspace/.manifests/android_native" }}
- android/change-java-version:
java-version: 17
- run:
Expand Down Expand Up @@ -153,7 +153,7 @@ commands:
steps:
- restore_cache:
keys:
- v7-app_build_android-{{ checksum "../workspace/.manifests/app_build" }}
- v8-app_build_android-{{ checksum "../workspace/.manifests/app_build" }}
- generate-query-map
- run:
name: Download fonts from s3
Expand All @@ -165,7 +165,7 @@ commands:
name: Build App
command: ./scripts/ci/ci-android
- save_cache:
key: v7-app_build_android-{{ checksum "../workspace/.manifests/app_build" }}
key: v8-app_build_android-{{ checksum "../workspace/.manifests/app_build" }}
paths:
- android/build
- android/app/build
Expand Down

0 comments on commit 305b03f

Please sign in to comment.