From 24f93116f789088764d60945b59a85c13107809f Mon Sep 17 00:00:00 2001 From: Matthew Fluet Date: Fri, 17 Nov 2023 16:32:24 -0500 Subject: [PATCH] Don't `brew update` on `macos` runner --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a544ba9a0..018989993 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -61,7 +61,7 @@ jobs: - name: Install dependencies (macos) if: ${{ startsWith(matrix.os, 'macos') }} run: | - brew update + # brew update brew install gmp echo "WITH_GMP_DIR=/usr/local" >> $GITHUB_ENV if [[ "${{ matrix.codegen }}" == "llvm" ]]; then brew install llvm; echo "$(brew --prefix llvm)/bin" >> $GITHUB_PATH; fi