Skip to content

Reduce number of jobs in CI by running a loop in a job #902

Reduce number of jobs in CI by running a loop in a job

Reduce number of jobs in CI by running a loop in a job #902

Workflow file for this run

name: CI Windows
on:
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [windows-latest, windows-2019]
architecture: [x86, x64]
cxx_standard: [11, 14, 17, 20, 23]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup MSVC
uses: TheMrMilchmann/setup-msvc-dev@v2
with:
arch: ${{matrix.architecture}}
- name: Loop the builds
run: |

Check failure on line 28 in .github/workflows/ci-windows.yml

View workflow run for this annotation

GitHub Actions / CI Windows

Invalid workflow file

The workflow is not valid. .github/workflows/ci-windows.yml (Line: 28, Col: 12): Unrecognized named-value: 'build_type'. Located at position 1 within expression: build_type
for build_type in {Debug, Release}
do
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=${{build_type}}
cmake --build ${{github.workspace}}/build --parallel
done