Skip to content

Commit 6db8ef2

Browse files
author
MarcoFalke
committed
Merge #18640: appveyor: Remove clcache
fac0c8d appveyor: Remove clcache (MarcoFalke) Pull request description: The build time without cache seems to be 47 minutes and with cache 46 minutes. Maybe we can save more time by not installing clcache. Top commit has no ACKs. Tree-SHA512: ce503641a465f5e49deb7aa6b566aaab5e567148c001704451891c49ba7ade3219ca788bc0d8e55565febb9aadd579e26894f6c03b99755eb8b5d1498acf4dc9
2 parents 4bd6bc5 + fac0c8d commit 6db8ef2

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.appveyor.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,8 @@ environment:
1616
VCPKG_COMMIT_ID: 'ed0df8ecc4ed7e755ea03e18aaf285fd9b4b4a74'
1717
cache:
1818
- C:\tools\vcpkg\installed -> build_msvc\vcpkg-packages.txt
19-
- C:\Users\appveyor\clcache -> .appveyor.yml, build_msvc\**, **\Makefile.am, **\*.vcxproj.in
2019
- C:\Qt5.9.8_x64_static_vs2019
2120
install:
22-
- cmd: pip install --quiet git+https://github.com/frerich/[email protected]
2321
# Disable zmq test for now since python zmq library on Windows would cause Access violation sometimes.
2422
# - cmd: pip install zmq
2523
# Powershell block below is to install the c++ dependencies via vcpkg. The pseudo code is:
@@ -46,7 +44,6 @@ install:
4644
}
4745
c:\tools\vcpkg\vcpkg integrate install
4846
before_build:
49-
- ps: clcache -M 536870912
5047
# Powershell block below is to download and extract the Qt static libraries. The pseudo code is:
5148
# 1. If the Qt destination directory exists assume it is correct and do nothing. To
5249
# force a fresh install of the packages delete the job's appveyor cache.
@@ -72,13 +69,9 @@ before_build:
7269
Write-Host "Qt binaries already present.";
7370
}
7471
- cmd: python build_msvc\msvc-autogen.py
75-
- ps: Start-Process clcache-server
76-
- ps: fsutil behavior set disablelastaccess 0 # Enable Access time feature on Windows (for clcache)
7772
build_script:
78-
- cmd: msbuild /p:TrackFileAccess=false /p:CLToolExe=clcache.exe build_msvc\bitcoin.sln /m /v:q /nologo
73+
- cmd: msbuild /p:TrackFileAccess=false build_msvc\bitcoin.sln /m /v:q /nologo
7974
after_build:
80-
- ps: fsutil behavior set disablelastaccess 1 # Disable Access time feature on Windows (better performance)
81-
- ps: clcache -z
8275
#- 7z a bitcoin-%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\build_msvc\%platform%\%configuration%\*.exe
8376
test_script:
8477
- cmd: src\test_bitcoin.exe -l test_suite

0 commit comments

Comments
 (0)