Bump Yarn cache key and fix JavaScript tests (#27343)

Summary:
Trivial - bumping the cache key used by yarn should help unblock the JS test failures on master.

Changelog:
[General] [Fixed] - Bump Yarn cache key in Circle CI config to address JS test failures

Pull Request resolved: https://github.com/facebook/react-native/pull/27343

Differential Revision: D18717521

Pulled By: hramos

fbshipit-source-id: f241a6da410881c8c50c42993338f6ca4b6dc4f2
This commit is contained in:
Héctor Ramos
2019-11-27 07:48:40 -08:00
committed by Facebook Github Bot
parent 7bcae81299
commit 9bfb48e70d
+3 -3
View File
@@ -59,8 +59,8 @@ commands:
steps:
- restore_cache:
keys:
- v3-yarn-cache-{{ arch }}-{{ checksum "yarn.lock" }}
- v3-yarn-cache-{{ arch }}
- v4-yarn-cache-{{ arch }}-{{ checksum "yarn.lock" }}
- v4-yarn-cache-{{ arch }}
- run:
name: Run Yarn
command: |
@@ -72,7 +72,7 @@ commands:
- save_cache:
paths:
- ~/.cache/yarn
key: v3-yarn-cache-{{ arch }}-{{ checksum "yarn.lock" }}
key: v4-yarn-cache-{{ arch }}-{{ checksum "yarn.lock" }}
install_buck_tooling:
steps: