Skip to content

Commit

Permalink
Update Appveyor dependencies package:
Browse files Browse the repository at this point in the history
* Use the Visual Studio 2017 image
* Update to rippled_deps17.01
  • Loading branch information
miguelportilla committed Dec 19, 2017
1 parent de40a27 commit 35decbf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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/
Expand Down Expand Up @@ -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" }
Expand Down

0 comments on commit 35decbf

Please sign in to comment.