diff options
author | Ryo Nakamura <upa@haeena.net> | 2022-11-05 22:26:48 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2022-11-05 22:26:48 +0900 |
commit | 8cb5c81fcfc5a43224c1d2c0eed374d85667a0d8 (patch) | |
tree | b623d8652c498707fa1e87252ea0242af417cb86 /.github | |
parent | 6d6c29680bfaee6d78b879167c283c0676cacd3d (diff) |
do not install libssh and cmake from homebrew
because they are already installed on the macos-latest runner.
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build-macos.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.github/workflows/build-macos.yml b/.github/workflows/build-macos.yml index 6437bce..cd64b57 100644 --- a/.github/workflows/build-macos.yml +++ b/.github/workflows/build-macos.yml @@ -19,11 +19,13 @@ jobs: steps: - uses: actions/checkout@v3 - - name: install build dependency - run: | - brew update - brew install libssh - brew install cmake + + # libssh and cmake are already installed on the macos-latest runner, 2022/11/5 + # - name: install build dependency + #run: | + # brew update + # brew install libssh + # brew install cmake - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make. |