summaryrefslogtreecommitdiff
path: root/.github/workflows/cmake-version.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/cmake-version.yml')
-rw-r--r--.github/workflows/cmake-version.yml6
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/cmake-version.yml b/.github/workflows/cmake-version.yml
index d61c59088..24d87ba3b 100644
--- a/.github/workflows/cmake-version.yml
+++ b/.github/workflows/cmake-version.yml
@@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
cmake_version: [
- "3.12", "3.13", "3.14", "3.15", "3.16",
+ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.15", "3.16",
"3.17", "3.18", "3.19", "3.20", "3.21"
]
@@ -21,6 +21,10 @@ jobs:
- uses: actions/checkout@v2
+ - name: Adapt cmake version checks
+ run: |
+ sed -i'orig' -E 's/cmake_minimum_required\(VERSION [0-9.]+\)/cmake_minimum_required(VERSION ${{ matrix.cmake_version }})/' CMakeLists.txt
+
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback