aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-11-25 16:31:40 +0100
committerMarcoFalke <falke.marco@gmail.com>2020-11-25 16:31:43 +0100
commit19b8071eaeb32dbe39ccc771dbe6095dd9285779 (patch)
treebbd2439540e25d0ead4975208c2788b4e28d4969
parent5c0aebfcd42a3effe2496ecef623302da64cd9a3 (diff)
parentfa18e7cbc5ea6aaba94dca4ebdc850c9db141f89 (diff)
downloadbitcoin-19b8071eaeb32dbe39ccc771dbe6095dd9285779.tar.xz
Merge #20489: CI msvc: only build vcpkg dependencies for release (not debug) to reduce build times
fa18e7cbc5ea6aaba94dca4ebdc850c9db141f89 This change to the appveyor CI config for msvc builds reverses a change introduced in #19960. It re-applies a setting to inform vcpkg to only build release vesions of the dependencies rather than the default of debug and release. (Aaron Clauson) Pull request description: This change to the appveyor CI config for msvc builds reverses a change introduced in #19960. It re-applies a setting to inform vcpkg to only build release versions of the dependencies rather than the default of debug and release. It had been expected that the vcpkg manifest mechanism introduced in #19960 would do this automatically but it turns out not to be the case. ACKs for top commit: MarcoFalke: ACK fa18e7cbc5ea6aaba94dca4ebdc850c9db141f89 if green hebasto: ACK fa18e7cbc5ea6aaba94dca4ebdc850c9db141f89, AppVeyor build takes 5 minutes less. Tree-SHA512: 427e7e78190c20e0d85dad9b29beed2b6fa13f99c6bc72bcc1839dfb51237a7cc785ab707b4f851c527c1bb0d3e7ebad9e640969e19d29778584bbaeec75cecf
-rw-r--r--.appveyor.yml1
1 files changed, 1 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml
index 0d026748b5..bf93d7a990 100644
--- a/.appveyor.yml
+++ b/.appveyor.yml
@@ -24,6 +24,7 @@ install:
git pull origin master > $null
git -c advice.detachedHead=false checkout $env:VCPKG_COMMIT_ID
.\bootstrap-vcpkg.bat > $null
+ Add-Content "C:\tools\vcpkg\triplets\$env:PLATFORM-windows-static.cmake" "set(VCPKG_BUILD_TYPE release)"
cd "$env:APPVEYOR_BUILD_FOLDER"
before_build:
# Powershell block below is to download and extract the Qt static libraries. The pseudo code is: