aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJuan Ramos <[email protected]>2023-01-16 10:55:48 -0700
committerJuan Ramos <[email protected]>2023-01-16 11:18:35 -0700
commitbbed346ee4b2c6df80445d7edbf5833a7bc00e98 (patch)
treecbb97362d3f27f3969062bdebd5877f6d702f516
parent6ea9413be28455ab172af63d14927f8453cb25f1 (diff)
downloadVulkan-Headers-bbed346ee4b2c6df80445d7edbf5833a7bc00e98.tar.gz
Vulkan-Headers-bbed346ee4b2c6df80445d7edbf5833a7bc00e98.zip
ci: Test CMake minimum
-rw-r--r--.github/workflows/linux.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index a45364d..d0f8555 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -51,3 +51,15 @@ jobs:
run: cmake -S . -B build -D BUILD_TESTS=ON
- name: Build Vulkan-Headers Tests
run: cmake --build build
+
+ test-cmake-minimum:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v3
+ - uses: lukka/get-cmake@latest
+ with:
+ cmakeVersion: 3.10.2
+ - name: CMake Version
+ run: cmake --version
+ - name: Configure Vulkan-Headers
+ run: mkdir build/ && cd build/ && cmake ${GITHUB_WORKSPACE}