From 27979dcd21ad43cfbf74ce249188594dbc8756e8 Mon Sep 17 00:00:00 2001 From: Riccardo Cipolleschi Date: Wed, 20 Sep 2023 08:05:44 -0700 Subject: [PATCH] Bump template cache to fix iOS CI (#39560) Summary: Earlier today we bumped boost and removed a fix for Xcode 15. Boost is a pod we don't consume from source and for the template we don't have a Podfile.lock to update. However, the pod we don't control are cached as they don't change often. This PR fixes bumps the cache to fix the CI issue bypass-github-export-checks ## Changelog: [Internal] - Bump iOS CI cache keys for the template Pull Request resolved: https://github.com/facebook/react-native/pull/39560 Test Plan: CircleCI is green Reviewed By: christophpurrer Differential Revision: D49458677 Pulled By: cipolleschi fbshipit-source-id: 957bb5bcc5fe940b9ea08c3f0b9031a39cee37ff --- .circleci/configurations/top_level.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/configurations/top_level.yml b/.circleci/configurations/top_level.yml index 5d3964c113c..310821a9544 100644 --- a/.circleci/configurations/top_level.yml +++ b/.circleci/configurations/top_level.yml @@ -95,8 +95,8 @@ references: rntester_podfile_lock_cache_key: &rntester_podfile_lock_cache_key v6-podfilelock-{{ .Environment.CIRCLE_JOB }}-{{ checksum "packages/rn-tester/Podfile" }}-{{ checksum "/tmp/week_year" }}-{{ checksum "/tmp/hermes/hermesversion" }} # Cocoapods - Template - template_cocoapods_cache_key: &template_cocoapods_cache_key v3-cocoapods-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/iOSTemplateProject/ios/Podfile.lock" }}-{{ checksum "/tmp/iOSTemplateProject/ios/Podfile" }}-{{ checksum "/tmp/hermes/hermesversion" }} - template_podfile_lock_cache_key: &template_podfile_lock_cache_key v3-podfilelock-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/iOSTemplateProject/ios/Podfile" }}-{{ checksum "/tmp/week_year" }}-{{ checksum "/tmp/hermes/hermesversion" }} + template_cocoapods_cache_key: &template_cocoapods_cache_key v4-cocoapods-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/iOSTemplateProject/ios/Podfile.lock" }}-{{ checksum "/tmp/iOSTemplateProject/ios/Podfile" }}-{{ checksum "/tmp/hermes/hermesversion" }} + template_podfile_lock_cache_key: &template_podfile_lock_cache_key v4-podfilelock-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/iOSTemplateProject/ios/Podfile" }}-{{ checksum "/tmp/week_year" }}-{{ checksum "/tmp/hermes/hermesversion" }} # Windows windows_yarn_cache_key: &windows_yarn_cache_key v1-win-yarn-cache-{{ arch }}-{{ checksum "yarn.lock" }}