Skip to content

Commit

Permalink
Use brew install -q to quell warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewFluet committed May 22, 2024
1 parent e9eaaf1 commit b07d314
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
if: ${{ matrix.runner == 'macos-13' }}
run: |
# brew update
brew install gmp
brew install -q 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
mkdir boot && cd boot
Expand All @@ -77,7 +77,7 @@ jobs:
if: ${{ matrix.runner == 'macos-14' }}
run: |
# brew update
brew install gmp
brew install -q gmp
echo "WITH_GMP_DIR=/opt/homebrew" >> $GITHUB_ENV
if [[ "${{ matrix.codegen }}" == "llvm" ]]; then brew install llvm; echo "$(brew --prefix llvm)/bin" >> $GITHUB_PATH; fi
mkdir boot && cd boot
Expand Down

0 comments on commit b07d314

Please sign in to comment.