Skip to content

Commit b265561

Browse files
hramosfacebook-github-bot
authored andcommitted
Bump brew cache key (#29843)
Summary: The Circle CI iOS jobs are failing when installing Watchman: ``` #!/bin/bash --login -eo pipefail HOMEBREW_NO_AUTO_UPDATE=1 brew install watchman >/dev/null Error: The `brew link` step did not complete successfully Exited with code exit status 1 CircleCI received exit code 1 ``` The commit associated with the job where this issue first appeared did not make any changes to Watchman, but it did change the VM used by Circle CI for these jobs. Flushing the homebrew cache might help. ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. For an example, see: https://github.com/facebook/react-native/wiki/Changelog --> [INTERNAL] Pull Request resolved: #29843 Test Plan: Run on Circle CI. Watchman install step succeeded: https://circleci.com/gh/facebook/react-native/166160?utm_campaign=vcs-integration-link&utm_medium=referral&utm_source=github-build-link Reviewed By: fkgozali Differential Revision: D23495409 Pulled By: hramos fbshipit-source-id: 56a68bba3afc1350d4fc409d65f9229e3f38f467
1 parent 38062cf commit b265561

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,13 +133,13 @@ commands:
133133
steps:
134134
- restore_cache:
135135
keys:
136-
- v3-brew
136+
- v4-brew
137137
- steps: << parameters.steps >>
138138
- save_cache:
139139
paths:
140140
- /usr/local/Homebrew
141141
- ~/Library/Caches/Homebrew
142-
key: v3-brew
142+
key: v4-brew
143143

144144
with_rntester_pods_cache_span:
145145
parameters:

0 commit comments

Comments
 (0)