Skip to content

Commit

Permalink
Update continuous-integration-workflow.yml for macOS
Browse files Browse the repository at this point in the history
As of today macOS-latest still points to macOS 12. We explicitly activate macOS 13 and set the required C++ Standard to C++11.
  • Loading branch information
VolkerEnderlein authored Feb 25, 2024
1 parent 45953a2 commit d9eff7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:

macos-build:
name: MacOS Build
runs-on: macos-latest
runs-on: macos-13
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -74,7 +74,7 @@ jobs:
- name: Create build directory and run CMake
run: |
brew install boost
cmake -S . -B cmake_build_dir -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake_install_dir
cmake -S . -B cmake_build_dir -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=cmake_install_dir -DCMAKE_CXX_STANDARD=11
- name: Build project
run: cmake --build cmake_build_dir --target install --config Release -- -j4
- name: Run tests
Expand Down

0 comments on commit d9eff7d

Please sign in to comment.