From 74e426926e2400754097db3ab6e83f86f0dede61 Mon Sep 17 00:00:00 2001 From: Samuel Moelius Date: Mon, 29 Jul 2024 06:09:53 -0400 Subject: [PATCH] No longer run `brew update` in CI --- .github/workflows/rust.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 2f5afba4f..4ec07c3ec 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -58,7 +58,9 @@ jobs: run: | LLVM_VERSION="$(rustc --version -v | grep '^LLVM version:' | grep -o '[0-9]\+' | head -n 1)" if [[ ${{ matrix.environment }} = 'macos-latest' ]]; then - brew update + # smoelius: Around the time Rust 1.80 was released, running `brew update` would be + # followed by "cargo: command not found" errors. + # brew update brew install llvm@"$LLVM_VERSION" || true echo "/usr/local/opt/llvm/bin" >> "$GITHUB_PATH" else