try the latest supported version of cmake

This commit is contained in:
Michał Trojnara 2022-07-30 10:28:51 +02:00
parent d0a958919d
commit 306d467a29

View File

@ -53,10 +53,16 @@ jobs:
with: with:
arch: ${{matrix.arch}} arch: ${{matrix.arch}}
- name: Install apt dependencies - name: Install apt dependencies (Linux)
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
run: sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime run: sudo apt-get install -y libssl-dev libcurl4-openssl-dev faketime
- name: Setup the oldest supported version of cmake (macOS)
if: matrix.os == 'macOS-latest'
uses: jwlawson/actions-setup-cmake@v1.12
with:
cmake-version: '3.6.0'
- name: Configure CMake (Linux) - name: Configure CMake (Linux)
if: matrix.os == 'ubuntu-latest' if: matrix.os == 'ubuntu-latest'
run: cmake run: cmake