summaryrefslogtreecommitdiff
path: root/.github/workflows/cmake-version.yml
diff options
context:
space:
mode:
authorAndrew Reynolds <andrew.j.reynolds@gmail.com>2021-10-21 19:32:08 -0500
committerGitHub <noreply@github.com>2021-10-21 19:32:08 -0500
commit81d4a2a0e337e341ac1373de0be8762617372ffc (patch)
treeeec38cb65373f9df09fde442fc69bd2088f7d005 /.github/workflows/cmake-version.yml
parent638c0bfdc798116925f839118dffd86581a58d43 (diff)
parentf9de5395d78bc5338ca800e539e91795730cbd29 (diff)
Merge branch 'master' into fixErrorSetfixErrorSet
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