From ecd1528197a07d2bc2dd5839ac894d41dce1391a Mon Sep 17 00:00:00 2001 From: Miguel Portilla Date: Thu, 30 Nov 2017 15:31:40 -0500 Subject: [PATCH] Update Appveyor dependencies package: * Use the Visual Studio 2017 image * Update to rippled_deps17.01 --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 63b822ff4..0ee42c687 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -6,7 +6,7 @@ environment: # that it's a small download. We also use appveyor's free cache, avoiding fees # downloading from S3 each time. # TODO: script to create this package. - RIPPLED_DEPS_PATH: rippled_deps15.02 + RIPPLED_DEPS_PATH: rippled_deps17.01 RIPPLED_DEPS_URL: https://ripple.github.io/Downloads/appveyor/%RIPPLED_DEPS_PATH%.zip # Other dependencies we just download each time. @@ -30,7 +30,7 @@ environment: target: msvc.debug buildconfig: Debug -os: Visual Studio 2015 +os: Visual Studio 2017 # At the end of each successful build we cache this directory. # https://www.appveyor.com/docs/build-cache/ @@ -103,7 +103,7 @@ build_script: "$cmake_target" New-Item -ItemType Directory -Force -Path "build/$cmake_target" Push-Location "build/$cmake_target" - cmake -G"Visual Studio 14 2015 Win64" -Dtarget="$cmake_target" ../.. + cmake -G"Visual Studio 15 2017 Win64" -Dtarget="$cmake_target" ../.. if ($LastExitCode -ne 0) { throw "CMake failed" } cmake --build . --config $env:buildconfig -- -m if ($LastExitCode -ne 0) { throw "CMake build failed" }