We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc1ec26 commit e670522Copy full SHA for e670522
.github/workflows/pipeline.yml
@@ -203,13 +203,17 @@ jobs:
203
run: cmake --build build --target clang-tidy-check
204
205
check-against-minimum-cmake:
206
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
207
208
steps:
209
- uses: actions/checkout@v4
210
211
- - name: Cmake version
212
- run: cmake --version
+ - name: Cmake install
+ run: |
213
+ wget https://github.com/Kitware/CMake/releases/download/v3.16.9/cmake-3.16.9-linux-x86_64.sh
214
+ chmod +x cmake-3.16.9-linux-x86_64.sh
215
+ sudo ./cmake-3.16.9-linux-x86_64.sh --skip-license --prefix=/usr/local
216
+ cmake --version
217
218
- name: Make build directory
219
run: cmake -Bbuild -H$GITHUB_WORKSPACE
0 commit comments