diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-03-29 05:00:34 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-03-29 05:00:34 +0000 |
| commit | f4118705fcd40707c6957df42ab602f28d50b4e4 (patch) | |
| tree | 86ea15a07775bebb5cbb885c1e89076dd35e2316 | |
| parent | Minor update to cmake script (diff) | |
| download | DiligentCore-f4118705fcd40707c6957df42ab602f28d50b4e4.tar.gz DiligentCore-f4118705fcd40707c6957df42ab602f28d50b4e4.zip | |
Added travis.yml steps to download Vulkan SDK in iOS build
| -rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 1cff7c41..455a2938 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,6 +18,10 @@ before_install: tar -xzf cmake-${CMAKE_VERSION}-Darwin-x86_64.tar.gz export PATH=$PWD/cmake-${CMAKE_VERSION}-Darwin-x86_64/CMake.app/Contents/bin:$PATH cmake --version + if [ "$IOS" = "true" ]; then + wget --no-check-certificate https://vulkan.lunarg.com/sdk/home#sdk/downloadConfirm/latest/mac/vulkan-sdk.tar.gz + tar -xzf vulkan-sdk.tar.gz + fi fi - | if [ "$TRAVIS_OS_NAME" = "linux" ]; then |
