Browse Source

Fix travis

Panagiotis Christopoulos Charitos 6 years ago
parent
commit
6c29781608
1 changed files with 3 additions and 3 deletions
  1. 3 3
      .travis.yml

+ 3 - 3
.travis.yml

@@ -36,9 +36,9 @@ matrix:
       before_install:
         - choco install python3
         - export PATH="/c/Python37:/c/Python37/Scripts:$PATH"
-        - curl -v --output VulkanSDK.exe https://vulkan.lunarg.com/sdk/download/1.1.106.0/windows/VulkanSDK-1.1.106.0-Installer.exe
-        - file VulkanSDK.exe
-        - powershell -Command "./VulkanSDK.exe /S"
+        - wget https://vulkan.lunarg.com/sdk/download/1.1.106.0/windows/VulkanSDK-1.1.106.0-Installer.exe
+        - file VulkanSDK-1.1.106.0-Installer.exe
+        - powershell -Command "VulkanSDK-1.1.106.0-Installer.exe /S"
         - export VULKAN_SDK=$TRAVIS_BUILD_DIR/VulkanSDK/1.1.106.0/x86_64
       env:
         - GENERATOR="Visual Studio 15 2017 Win64" BUILD_TYPE=Debug EXTRA_CHECKS=ON TRACE=ON