diff options
| author | MarcoFalke <[email protected]> | 2018-08-17 14:18:00 -0400 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2018-08-17 14:18:02 -0400 |
| commit | 1f470a8916aabbb7f03afda26d41ebfd8d1a2263 (patch) | |
| tree | a35c19cf0d01552cbb9ae5bfc3ff53be906835fa | |
| parent | Merge #13665: [build] Add risc-v support to gitian (diff) | |
| parent | appveyor: fetch the latest port data (diff) | |
| download | discoin-1f470a8916aabbb7f03afda26d41ebfd8d1a2263.tar.xz discoin-1f470a8916aabbb7f03afda26d41ebfd8d1a2263.zip | |
Merge #13997: appveyor: fetch the latest port data
ea16c2d04e appveyor: fetch the latest port data (Chun Kuan Lee)
Pull request description:
Discussion in https://github.com/bitcoin/bitcoin/pull/13964#issuecomment-413756559 , fetch the latest port data before installing it.
Tree-SHA512: a3b95aeb3b298130ff0617a8dec5c97c0882cf7a3b72ce792e63d8f2c2ac4a297dfa0d3357878c2198a9fea62d0f24df56598293dde88963dd043e121be4dc3a
| -rw-r--r-- | appveyor.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 0c0c3d066..c6a5a91ba 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,3 +1,4 @@ +version: '{branch}.{build}' skip_tags: true image: Visual Studio 2017 configuration: Release @@ -24,6 +25,8 @@ before_build: $all_packages += $packages[$i] + ":" + $env:PLATFORM + "-windows-static " } + git -C C:\Tools\vcpkg pull # This is a temporary fix, can be removed after appveyor update its image to include Microsoft/vcpkg#4046 + Invoke-Expression -Command "vcpkg install $all_packages" build: project: build_msvc\bitcoin.sln |