mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2025-09-13 14:02:15 -04:00
Switch windows workflow from looping over C++ standards to one standard per job (#2050)
This commit is contained in:
parent
6578bfcc88
commit
2a19ddd7e4
35
.github/workflows/ci-windows.yml
vendored
35
.github/workflows/ci-windows.yml
vendored
@ -17,6 +17,8 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
os: [windows-2019, windows-2022]
|
os: [windows-2019, windows-2022]
|
||||||
architecture: [x86, x64]
|
architecture: [x86, x64]
|
||||||
|
cpp_standard: [11, 14, 17, 20, 23]
|
||||||
|
build_type: [Debug, Release]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
@ -28,25 +30,16 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
arch: ${{matrix.architecture}}
|
arch: ${{matrix.architecture}}
|
||||||
|
|
||||||
- name: Loop over cpp_standards (11, 14, ...) and build_types (Debug, Release)
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
for cpp_standard in 11 14 17 20 23
|
cmake -B build/${{matrix.cpp_standard}}/${{matrix.build_type}} \
|
||||||
do
|
-DVULKAN_HPP_SAMPLES_BUILD=ON \
|
||||||
for build_type in Debug Release
|
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON \
|
||||||
do
|
-DVULKAN_HPP_TESTS_BUILD=ON \
|
||||||
echo "================================================================================="
|
-DVULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC=ON \
|
||||||
echo "Building C++"$cpp_standard" in "$build_type" mode on "${{matrix.os}}" with architecture "${{matrix.architecture}}
|
-DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON \
|
||||||
echo "================================================================================="
|
-DVULKAN_HPP_PRECOMPILE=OFF \
|
||||||
cmake -B build/$cpp_standard/$build_type \
|
-DVULKAN_HPP_RUN_GENERATOR=ON \
|
||||||
-DVULKAN_HPP_SAMPLES_BUILD=ON \
|
-DCMAKE_CXX_STANDARD=${{matrix.cpp_standard}} \
|
||||||
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON \
|
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}
|
||||||
-DVULKAN_HPP_TESTS_BUILD=ON \
|
cmake --build build/${{matrix.cpp_standard}}/${{matrix.build_type}} --parallel
|
||||||
-DVULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC=ON \
|
|
||||||
-DVULKAN_HPP_BUILD_WITH_LOCAL_VULKAN_HPP=ON \
|
|
||||||
-DVULKAN_HPP_PRECOMPILE=OFF \
|
|
||||||
-DVULKAN_HPP_RUN_GENERATOR=ON \
|
|
||||||
-DCMAKE_CXX_STANDARD=$cpp_standard \
|
|
||||||
-DCMAKE_BUILD_TYPE=$build_type
|
|
||||||
cmake --build build/$cpp_standard/$build_type --parallel
|
|
||||||
done
|
|
||||||
done
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user