Skip to content

Commit

Permalink
Switch windows workflow from looping over C++ standards to one standa…
Browse files Browse the repository at this point in the history
…rd per job
  • Loading branch information
asuessenbach committed Jan 21, 2025
1 parent e7a8252 commit 4563639
Showing 1 changed file with 14 additions and 21 deletions.
35 changes: 14 additions & 21 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
matrix:
os: [windows-2019, windows-2022]
architecture: [x86, x64]
cpp_standard: [11, 14, 17, 20, 23]
build_type: [Debug, Release]

steps:
- uses: actions/checkout@v4
Expand All @@ -28,25 +30,16 @@ jobs:
with:
arch: ${{matrix.architecture}}

- name: Loop over cpp_standards (11, 14, ...) and build_types (Debug, Release)
- name: Build
run: |
for cpp_standard in 11 14 17 20 23
do
for build_type in Debug Release
do
echo "================================================================================="
echo "Building C++"$cpp_standard" in "$build_type" mode on "${{matrix.os}}" with architecture "${{matrix.architecture}}
echo "================================================================================="
cmake -B build/$cpp_standard/$build_type \
-DVULKAN_HPP_SAMPLES_BUILD=ON \
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON \
-DVULKAN_HPP_TESTS_BUILD=ON \
-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
cmake -B build/${{matrix.cpp_standard}}/${{matrix.build_type}} \
-DVULKAN_HPP_SAMPLES_BUILD=ON \
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON \
-DVULKAN_HPP_TESTS_BUILD=ON \
-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=${{matrix.cpp_standard}} \
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}
cmake --build build/${{matrix.cpp_standard}}/${{matrix.build_type}} --parallel

0 comments on commit 4563639

Please sign in to comment.