mirror of
https://github.com/KhronosGroup/Vulkan-Hpp
synced 2024-11-08 13:40:08 +00:00
50 lines
1.4 KiB
YAML
50 lines
1.4 KiB
YAML
|
|
name: CI Windows
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{matrix.os}}
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [windows-2019, windows-2022]
|
|
architecture: [x86, x64]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Setup MSVC
|
|
uses: TheMrMilchmann/setup-msvc-dev@v2
|
|
with:
|
|
arch: ${{matrix.architecture}}
|
|
|
|
- name: Loop over cpp_standards (11, 14, ...) and build_types (Debug, Release)
|
|
run: |
|
|
for cpp_standard in 11 14 17 20 23
|
|
do
|
|
for build_type in Debug Release
|
|
do
|
|
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
|