Skip to content

Commit

Permalink
pin cmake version to <3.29 due to dune cmake issue for cmake >=3.29
Browse files Browse the repository at this point in the history
  • Loading branch information
lkeegan committed Apr 11, 2024
1 parent ae8b13a commit 1613aef
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ jobs:
shell: ${{ matrix.shell }}
steps:
- uses: spatial-model-editor/setup-ci@v1
- if: runner.os == 'Linux'
run: |
pip install "cmake<3.29"
cmake --version
- if: runner.os == 'macOS'
run: |
brew install "cmake<3.29"
cmake --version
- if: runner.os == 'Windows'
run: |
wget https://repo.msys2.org/mingw/ucrt64/mingw-w64-ucrt-x86_64-ccmake-3.28.3-2-any.pkg.tar.zst
pacman -U --noconfirm mingw-w64-ucrt-x86_64-ccmake-3.28.3-2-any.pkg.tar.zst
cmake --version
- uses: actions/checkout@v4
- name: Build script
run: ./build.sh
Expand Down

0 comments on commit 1613aef

Please sign in to comment.