Skip to content

Commit a1fe390

Browse files
authored
[ci] Fix mac arm64 builder (#22260)
We have been seeing the `brew install python3` step fail consistently in the last 24 hours. I'm not sure why this fixes the issue.
1 parent 32213cc commit a1fe390

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.circleci/config.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,10 +320,8 @@ commands:
320320
environment:
321321
HOMEBREW_NO_AUTO_UPDATE: "1"
322322
command: |
323-
brew list cmake || brew install cmake
324-
brew list ninja || brew install ninja
325-
brew list python3 || brew install python3
326-
brew list pkg-config || brew install pkg-config
323+
brew update
324+
brew install cmake ninja python3 pkg-config
327325
- checkout
328326
- run:
329327
name: submodule update

0 commit comments

Comments
 (0)