diff --git a/scripts/build_windows_engine.sh b/scripts/build_windows_engine.sh index 34c02e93..91dbc825 100644 --- a/scripts/build_windows_engine.sh +++ b/scripts/build_windows_engine.sh @@ -2,6 +2,8 @@ . scripts/lib.sh +export VULKAN_SDK=C:/VulkanSDK/$VULKAN_SDK_VERSION + # Build engine cd $TRAVIS_BUILD_DIR diff --git a/scripts/travis_windows_deps.sh b/scripts/travis_windows_deps.sh index e29b7608..84a169da 100644 --- a/scripts/travis_windows_deps.sh +++ b/scripts/travis_windows_deps.sh @@ -3,5 +3,7 @@ curl http://libsdl.org/release/SDL2-devel-$SDL_VERSION-VC.zip -o SDL2.zip unzip -q SDL2.zip mv SDL2-$SDL_VERSION SDL2_VC -curl -L --show-error --output VulkanSDK.exe https://vulkan.lunarg.com/sdk/download/$VULKAN_SDK_VERSION/windows/VulkanSDK-$VULKAN_SDK_VERSION-Installer.exe?Human=true -runas /user:administrator VulkanSDK.exe /S +curl -L --show-error --output vulkan_sdk.exe https://vulkan.lunarg.com/sdk/download/$VULKAN_SDK_VERSION/windows/vulkan_sdk.exe +echo "Installing Vulkan SDK $VULKAN_SDK_VERSION" +runas /user:administrator vulkan_sdk.exe /S +echo "Installed"