2018-08-17 06:57:28 +02:00
version : '{branch}.{build}'
2018-08-14 05:41:16 +02:00
skip_tags : true
2019-11-06 23:02:16 +01:00
image : Visual Studio 2019
2018-08-14 05:41:16 +02:00
configuration : Release
platform : x64
2018-11-06 01:40:40 +01:00
clone_depth : 5
2018-08-14 05:41:16 +02:00
environment :
APPVEYOR_SAVE_CACHE_ON_ERROR : true
2018-08-26 10:50:38 +02:00
CLCACHE_SERVER : 1
2018-11-06 01:40:40 +01:00
PATH : 'C:\Python37-x64;C:\Python37-x64\Scripts;%PATH%'
PYTHONUTF8 : 1
2019-12-12 19:51:30 +01:00
QT_DOWNLOAD_URL : 'https://github.com/sipsorcery/qt_win_binary/releases/download/v1.6/Qt5.9.8_x64_static_vs2019.zip'
QT_DOWNLOAD_HASH : '9a8c6eb20967873785057fdcd329a657c7f922b0af08c5fde105cc597dd37e21'
2019-11-06 23:02:16 +01:00
QT_LOCAL_PATH : 'C:\Qt5.9.8_x64_static_vs2019'
VCPKG_INSTALL_PATH : 'C:\tools\vcpkg\installed'
2018-08-26 10:50:38 +02:00
cache :
2019-11-10 14:49:28 +01:00
- C:\tools\vcpkg\installed -> build_msvc\vcpkg-packages.txt
2019-02-28 19:44:01 +01:00
- C:\Users\appveyor\clcache -> .appveyor.yml, build_msvc\**, **\Makefile.am, **\*.vcxproj.in
2019-11-06 23:02:16 +01:00
- C:\Qt5.9.8_x64_static_vs2019
2018-08-26 10:50:38 +02:00
install :
2018-11-06 01:40:40 +01:00
- cmd : pip install --quiet git+https://github.com/frerich/clcache.git@v4.2.0
2018-08-27 11:51:06 +02:00
# Disable zmq test for now since python zmq library on Windows would cause Access violation sometimes.
# - cmd: pip install zmq
2019-11-06 23:02:16 +01:00
# Powershell block below is to install the c++ dependencies via vcpkg. The pseudo code is:
2019-11-10 14:49:28 +01:00
# 1. Check whether the vcpkg install directory exists (note that updating the vcpkg-packages.txt file
# will cause the appveyor cache rules to invalidate the directory)
# 2. If the directory is missing:
2019-11-06 23:02:16 +01:00
# a. Update the vcpkg source (including port files) and build the vcpkg binary,
2019-11-10 14:49:28 +01:00
# b. Install the missing packages.
2019-11-06 23:02:16 +01:00
- ps : |
2019-11-10 14:49:28 +01:00
$env:PACKAGES = Get-Content -Path build_msvc\vcpkg-packages.txt
Write-Host "vcpkg list: $env:PACKAGES"
2019-11-06 23:02:16 +01:00
if(!(Test-Path -Path ($env:VCPKG_INSTALL_PATH))) {
2019-11-10 14:49:28 +01:00
cd c:\tools\vcpkg
2019-11-06 23:02:16 +01:00
$env:GIT_REDIRECT_STDERR = '2>&1' # git is writing non-errors to STDERR when doing git pull. Send to STDOUT instead.
git pull origin master
.\bootstrap-vcpkg.bat
2019-11-10 14:49:28 +01:00
Add-Content "C:\tools\vcpkg\triplets\$env:PLATFORM-windows-static.cmake" "set(VCPKG_BUILD_TYPE release)"
2019-11-06 23:02:16 +01:00
.\vcpkg install --triplet $env:PLATFORM-windows-static $env:PACKAGES.split() > $null
2019-11-10 14:49:28 +01:00
cd "$env:APPVEYOR_BUILD_FOLDER"
2019-11-06 23:02:16 +01:00
}
else {
2019-11-10 14:49:28 +01:00
Write-Host "required vcpkg packages already installed."
2019-11-06 23:02:16 +01:00
}
2019-11-10 14:49:28 +01:00
c:\tools\vcpkg\vcpkg integrate install
2018-08-14 05:41:16 +02:00
before_build :
2018-09-17 15:36:21 +02:00
- ps : clcache -M 536870912
2019-11-06 23:02:16 +01:00
# Powershell block below is to download and extract the Qt static libraries. The pseudo code is:
# 1. If the Qt destination directory exists assume it is correct and do nothing. To
# force a fresh install of the packages delete the job's appveyor cache.
# 2. Otherwise:
# a. Download the zip file with the prebuilt Qt static libraries.
# b. Check that the downloaded file matches the expected hash.
# c. Extract the zip file to the specific destination path expected by the msbuild projects.
2019-09-08 14:13:05 +02:00
- ps : |
if(!(Test-Path -Path ($env:QT_LOCAL_PATH))) {
Write-Host "Downloading Qt binaries.";
Invoke-WebRequest -Uri $env:QT_DOWNLOAD_URL -Out qtdownload.zip;
Write-Host "Qt binaries successfully downloaded, checking hash against $env:QT_DOWNLOAD_HASH...";
if((Get-FileHash qtdownload.zip).Hash -eq $env:QT_DOWNLOAD_HASH) {
Expand-Archive qtdownload.zip -DestinationPath $env:QT_LOCAL_PATH;
Write-Host "Qt binary download matched the expected hash.";
}
else {
Write-Host "ERROR: Qt binary download did not match the expected hash.";
Exit-AppveyorBuild;
}
}
else {
Write-Host "Qt binaries already present.";
}
2018-08-25 18:15:51 +02:00
- cmd : python build_msvc\msvc-autogen.py
2018-08-26 10:50:38 +02:00
- ps : Start-Process clcache-server
2018-09-17 15:36:21 +02:00
- ps : fsutil behavior set disablelastaccess 0 # Enable Access time feature on Windows (for clcache)
2018-08-26 10:50:38 +02:00
build_script :
2019-11-06 23:02:16 +01:00
- cmd : msbuild /p:TrackFileAccess=false /p:CLToolExe=clcache.exe build_msvc\bitcoin.sln /m /v:q /nologo
2018-08-26 10:50:38 +02:00
after_build :
2018-11-06 01:40:40 +01:00
- ps : fsutil behavior set disablelastaccess 1 # Disable Access time feature on Windows (better performance)
2018-09-17 15:36:21 +02:00
- ps : clcache -z
2019-09-08 14:13:05 +02:00
#- 7z a bitcoin-%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\build_msvc\%platform%\%configuration%\*.exe
2018-08-14 05:41:16 +02:00
test_script :
2018-11-06 01:40:40 +01:00
- cmd : src\test_bitcoin.exe -k stdout -e stdout 2> NUL
- cmd : src\bench_bitcoin.exe -evals=1 -scaling=0 > NUL
2018-08-27 11:51:06 +02:00
- ps : python test\util\bitcoin-util-test.py
- cmd : python test\util\rpcauth-test.py
2019-11-06 23:02:16 +01:00
# Fee estimation test failing on appveyor with: WinError 10048] Only one usage of each socket address (protocol/network address/port) is normally permitted.
- cmd : python test\functional\test_runner.py --ci --quiet --combinedlogslen=4000 --failfast --exclude feature_fee_estimation
2019-09-08 14:13:05 +02:00
artifacts :
#- path: bitcoin-%APPVEYOR_BUILD_VERSION%.zip
2018-08-14 05:41:16 +02:00
deploy : off