Skip to content

Commit 39907f6

Browse files
authored
ci: don't install cmake on macOS as it's already installed (#1351)
macOS CI is currently broken. It seems `cmake` is already installed on macOS, which makes `brew install cmake` fail, so don't try to re-install it.
2 parents 0a92eda + e41e020 commit 39907f6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,8 +90,9 @@ jobs:
9090
- name: Install packages (macOS)
9191
if: runner.os == 'macOS'
9292
run: |
93-
# `bash` needed b/c macOS ships with bash 3, which doesn't support arrays properly
94-
brew install -q cmake ninja gpg llvm@${{ matrix.clang-version }} bash
93+
# `cmake` needed, but should be already installed.
94+
# `bash` needed b/c macOS ships with bash 3, which doesn't support arrays properly.
95+
brew install -q ninja gpg llvm@${{ matrix.clang-version }} bash
9596
9697
- name: cargo build --release
9798
run: |

0 commit comments

Comments
 (0)