Skip to content

Commit

Permalink
refresh caches
Browse files Browse the repository at this point in the history
  • Loading branch information
gkartalis committed Nov 7, 2024
1 parent d34f5a1 commit a19543e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 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: v8
cache-version: v9
run-relay-compiler:
steps:
- run:
Expand All @@ -73,27 +73,27 @@ commands:
steps:
- restore_cache:
keys:
- v9-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
- v10-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
- run:
name: Bundle install
command: bundle check || bundle install
environment:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
- save_cache:
key: v9-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
key: v10-gems-{{ checksum "Gemfile.lock" }}-{{ arch }}
paths:
- .vendor
install-cocoapods:
steps:
- restore_cache:
keys:
- v21-pods-{{ checksum ".manifests/cocoapods" }}
- v22-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: v21-pods-{{ checksum ".manifests/cocoapods" }}
key: v22-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:
- v18-app_build_ios-{{ checksum ".manifests/app_build" }}
- v19-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: v18-app_build_ios-{{ checksum ".manifests/app_build" }}
key: v19-app_build_ios-{{ checksum ".manifests/app_build" }}
paths:
- derived_data
- node_modules/react-native-config
Expand All @@ -124,9 +124,9 @@ commands:
at: ../workspace
- restore_cache:
keys:
- v12-test-success-{{ checksum "../workspace/.manifests/android_native" }}
- v13-test-success-{{ checksum "../workspace/.manifests/android_native" }}
- android/change-java-version:
java-version: 11
java-version: 17
- run:
name: Quit early if possible
command: |
Expand All @@ -153,7 +153,7 @@ commands:
steps:
- restore_cache:
keys:
- v6-app_build_android-{{ checksum "../workspace/.manifests/app_build" }}
- v7-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: v6-app_build_android-{{ checksum "../workspace/.manifests/app_build" }}
key: v7-app_build_android-{{ checksum "../workspace/.manifests/app_build" }}
paths:
- android/build
- android/app/build
Expand Down

0 comments on commit a19543e

Please sign in to comment.