mirror of
https://github.com/charles-lunarg/vk-bootstrap.git
synced 2024-11-22 07:24:34 +00:00
test: Add windows builds to ci
This commit is contained in:
parent
860389249f
commit
15ae056542
24
.github/workflows/ci_build.yml
vendored
24
.github/workflows/ci_build.yml
vendored
@ -59,3 +59,27 @@ jobs:
|
||||
- name: CMake Build
|
||||
run: cmake --build build
|
||||
|
||||
windows:
|
||||
name: ${{ matrix.config.name }}
|
||||
runs-on: ${{matrix.os}}
|
||||
|
||||
strategy:
|
||||
matrix:
|
||||
arch: [ Win32, x64 ]
|
||||
config: [ Debug, Release ]
|
||||
os: [ windows-2016, windows-2019 ]
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2.0.0
|
||||
|
||||
- name: Download and setup Vulkan-Headers
|
||||
run: |
|
||||
git clone https://github.com/KhronosGroup/Vulkan-Headers
|
||||
echo "VULKAN_SDK=./Vulkan-Headers" >> $GITHUB_ENV
|
||||
|
||||
- name: CMake Configure
|
||||
run: cmake -Bbuild -DVK_BOOTSTRAP_TEST=ON -DCMAKE_BUILD_TYPE=Debug
|
||||
|
||||
- name: CMake Build
|
||||
run: cmake --build build
|
Loading…
Reference in New Issue
Block a user