From a1fe3902bf73a3802eae0357d273d0e37ea79898 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Thu, 18 Jul 2024 09:08:07 -0700 Subject: [PATCH] [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. --- .circleci/config.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a13573111bfa2..080d4d69f2993 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -320,10 +320,8 @@ commands: environment: HOMEBREW_NO_AUTO_UPDATE: "1" command: | - brew list cmake || brew install cmake - brew list ninja || brew install ninja - brew list python3 || brew install python3 - brew list pkg-config || brew install pkg-config + brew update + brew install cmake ninja python3 pkg-config - checkout - run: name: submodule update