Skip to content

Commit

Permalink
Reduce number of jobs in CI by running a loop in a job
Browse files Browse the repository at this point in the history
  • Loading branch information
asuessenbach committed Dec 14, 2023
1 parent f67cfcc commit bf2f284
Showing 1 changed file with 23 additions and 18 deletions.
41 changes: 23 additions & 18 deletions .github/workflows/ci-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ jobs:
matrix:
os: [windows-latest, windows-2019]
architecture: [x86, x64]
build_type: [Debug, Release]
cxx_standard: [11, 14, 17, 20, 23]

steps:
- uses: actions/checkout@v4
with:
Expand All @@ -24,19 +23,25 @@ jobs:
uses: TheMrMilchmann/setup-msvc-dev@v2
with:
arch: ${{matrix.architecture}}

- name: Configure CMake
run: cmake -B ${{github.workspace}}/build
-DVULKAN_HPP_SAMPLES_BUILD=ON
-DVULKAN_HPP_SAMPLES_BUILD_ONLY_DYNAMIC=ON
-DVULKAN_HPP_SAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON
-DVULKAN_HPP_TESTS_BUILD=ON
-DVULKAN_HPP_TESTS_BUILD_ONLY_DYNAMIC=ON
-DVULKAN_HPP_TESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON
-DVULKAN_HPP_PRECOMPILE=OFF
-DVULKAN_HPP_RUN_GENERATOR=ON
-DCMAKE_CXX_STANDARD=${{matrix.cxx_standard}}
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}

- name: Build
run: cmake --build ${{github.workspace}}/build --parallel

- name: Loop over cpp_standards (11, 14, ...) and build_types (Debug, Release)
run: |
$cpp_standards = 11, 14, 17, 20, 23
$build_types = "Debug", "Release"
foreach ($cpp_standard in $cpp_standards)
{
foreach ($build_type in $build_types)
{
cmake -B ${{github.workspace}}/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 ${{github.workspace}}/build/$cpp_standard/$build_type --parallel
}
}

0 comments on commit bf2f284

Please sign in to comment.