Skip to content

Commit

Permalink
--force --overwrite for all brew install targets to fix some strange …
Browse files Browse the repository at this point in the history
…behavior on Github actions when installing packages on Mac (seems to be caused by packages preinstalled by Github)
  • Loading branch information
patrickbr committed Nov 22, 2023
1 parent edf7b44 commit 341a752
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
- name: Checkout submodules
run: git submodule update --init --recursive
- name: install dependencies
run: brew install cmake && brew install glpk && brew tap coin-or-tools/coinor && brew install coin-or-tools/coinor/cbc
run: brew install --force --overwrite cmake && brew install --force --overwrite glpk && brew tap coin-or-tools/coinor && brew install --force --overwrite coin-or-tools/coinor/cbc
- name: cmake
run: mkdir build && cd build && cmake ..
- name: make
Expand All @@ -101,7 +101,7 @@ jobs:
- name: Checkout submodules
run: git submodule update --init --recursive
- name: install dependencies
run: brew install cmake && brew install glpk && brew tap coin-or-tools/coinor && brew install coin-or-tools/coinor/cbc
run: brew install --force --overwrite cmake && brew install --force --overwrite glpk && brew tap coin-or-tools/coinor && brew install --force --overwrite coin-or-tools/coinor/cbc
- name: cmake
run: mkdir build && cd build && cmake ..
- name: make
Expand All @@ -116,7 +116,7 @@ jobs:
- name: Checkout submodules
run: git submodule update --init --recursive
- name: install dependencies
run: brew install cmake && brew install glpk && brew tap coin-or-tools/coinor && brew install coin-or-tools/coinor/cbc
run: brew install --force --overwrite cmake && brew install --force --overwrite glpk && brew tap coin-or-tools/coinor && brew install --force --overwrite coin-or-tools/coinor/cbc
- name: cmake
run: mkdir build && cd build && cmake ..
- name: make
Expand Down

0 comments on commit 341a752

Please sign in to comment.