Skip to content

Commit

Permalink
Update cmake-mac.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CharJon authored Apr 23, 2024
1 parent 47e1791 commit 60d6f64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake-mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac.
# You can convert this to a matrix build if you need cross-platform coverage.
# See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
runs-on: macos-latest #ubuntu-latest #macos-latest-large
runs-on: macos-14 #ubuntu-latest #macos-latest-large

steps:
- uses: actions/checkout@v4
Expand All @@ -28,12 +28,12 @@ jobs:
run: |
brew update
brew install scip
brew upgrade
# brew upgrade

- 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.
# See https://cmake.org/cmake/help/latest/variable/CMAKE_BUILD_TYPE.html?highlight=cmake_build_type
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DSCIP_DIR=/opt/homebrew/Cellar/scip/9.0.0/

- name: Build
# Build your program with the given configuration
Expand Down

0 comments on commit 60d6f64

Please sign in to comment.