From 9bfb48e70d331fa7dfe1b621102e14e2eeb4c5c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Wed, 27 Nov 2019 07:40:48 -0800 Subject: [PATCH] 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 --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 64a7f7026ef..6a383ac8b8a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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: