16 lines
359 B
YAML
16 lines
359 B
YAML
![]() |
language: cpp
|
||
|
os:
|
||
|
- linux
|
||
|
- osx
|
||
|
- windows
|
||
|
script:
|
||
|
#
|
||
|
# Put the Vulkan headers outside the source directory since CMake
|
||
|
# will not let us export an include path prefixed in the build dir.
|
||
|
#
|
||
|
- pushd ..
|
||
|
- git clone --depth 1 https://github.com/KhronosGroup/Vulkan-Headers
|
||
|
- export VULKAN_SDK=$PWD/Vulkan-Headers
|
||
|
- popd
|
||
|
- test/run_tests.sh
|