Vulkan-Hpp/.github/workflows/ci-windows.yml

49 lines
1.2 KiB
YAML
Raw Normal View History

2021-06-07 14:19:08 +00:00
name: CI Windows
on:
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
matrix:
os: [windows-latest, windows-2019]
architecture: [x86, x64]
2021-06-07 14:19:08 +00:00
build_type: [Debug, Release]
cxx_standard: [11, 14, 17, 20]
steps:
- uses: actions/checkout@v2
- name: Update Submodules
run: git submodule update --init --recursive
- name: Install Ninja
uses: ashutoshvarma/setup-ninja@master
with:
version: 1.11.0
- name: Setup MSVC
uses: TheMrMilchmann/setup-msvc-dev@v1
with:
arch: ${{matrix.architecture}}
2021-06-07 14:19:08 +00:00
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -GNinja
2021-06-07 14:19:08 +00:00
-DSAMPLES_BUILD=ON
-DSAMPLES_BUILD_ONLY_DYNAMIC=ON
-DSAMPLES_BUILD_WITH_LOCAL_VULKAN_HPP=ON
-DTESTS_BUILD=ON
-DTESTS_BUILD_ONLY_DYNAMIC=ON
-DTESTS_BUILD_WITH_LOCAL_VULKAN_HPP=ON
-DVULKAN_HPP_PRECOMPILE=OFF
2021-06-07 14:19:08 +00:00
-DVULKAN_HPP_RUN_GENERATOR=ON
-DCMAKE_CXX_STANDARD=${{matrix.cxx_standard}}
-DCMAKE_BUILD_TYPE=${{matrix.build_type}}
2021-06-07 14:19:08 +00:00
- name: Build
run: cmake --build ${{github.workspace}}/build --parallel