In order for volkLoadDeviceTable to work, we need to load vkGetDevice… #274
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: build | |
on: [push, pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ubuntu, macos, windows] | |
name: ${{matrix.os}} | |
runs-on: ${{matrix.os}}-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/checkout@v1 | |
with: | |
repository: KhronosGroup/Vulkan-Headers | |
ref: main | |
path: Vulkan-Headers | |
- name: move sdk | |
shell: bash | |
run: | | |
mv ../Vulkan-Headers ~/Vulkan-Headers | |
- name: build main | |
shell: bash | |
run: | | |
export VULKAN_SDK=~/Vulkan-Headers | |
git -C ~/Vulkan-Headers checkout main | |
test/run_tests.sh | |
- name: build 1.1.101 | |
shell: bash | |
run: | | |
export VULKAN_SDK=~/Vulkan-Headers | |
git -C ~/Vulkan-Headers checkout sdk-1.1.101 | |
test/run_tests.sh | |
- name: build 1.2.131 | |
shell: bash | |
run: | | |
export VULKAN_SDK=~/Vulkan-Headers | |
git -C ~/Vulkan-Headers checkout sdk-1.2.131 | |
test/run_tests.sh | |
- name: build 1.2.182 | |
shell: bash | |
run: | | |
export VULKAN_SDK=~/Vulkan-Headers | |
git -C ~/Vulkan-Headers checkout sdk-1.2.182 | |
test/run_tests.sh | |
- name: build 1.3.204 | |
shell: bash | |
run: | | |
export VULKAN_SDK=~/Vulkan-Headers | |
git -C ~/Vulkan-Headers checkout sdk-1.3.204 | |
test/run_tests.sh | |
- name: build 1.3.239 | |
shell: bash | |
run: | | |
export VULKAN_SDK=~/Vulkan-Headers | |
git -C ~/Vulkan-Headers checkout sdk-1.3.239 | |
test/run_tests.sh |