summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2020-11-03 09:28:39 -0600
committerBe <be@mixxx.org>2020-11-03 13:24:06 -0600
commit636bb91012f6273bae639496e04bd86f1c72da07 (patch)
tree5302612618811b5f223fa27c9aebd573e784a443
parent507c01ce30385c558385c1005fe4980a41927f1a (diff)
AppVeyor: print compiler cache statistics after builds
-rw-r--r--appveyor.yml5
1 files changed, 2 insertions, 3 deletions
diff --git a/appveyor.yml b/appveyor.yml
index 6ab9d03460..32f030d29e 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -104,7 +104,6 @@ for:
# Split cache in half with Ubuntu ccache and underestimate compression ratio a little to
# avoid going over the limit.
- ccache -M 4G
- - ccache -s
build_script:
- export CMAKE_BUILD_PARALLEL_LEVEL="$(nproc)"
@@ -142,6 +141,7 @@ for:
after_test:
- xsltproc -o ctest-to-junit-results.xml ../cmake/ctest-to-junit.xsl Testing/*/Test.xml
- curl -F 'file=@ctest-to-junit-results.xml' "https://ci.appveyor.com/api/testresults/junit/$APPVEYOR_JOB_ID"
+ - ccache -s
########## END UBUNTU SPECIFIC CONFIGURATION ##########
@@ -219,7 +219,6 @@ for:
# Split cache in half with Ubuntu ccache and underestimate compression ratio a little to
# avoid going over the limit.
- clcache -M 4294967296
- - clcache -s
# Improve clcache performance
- set CLCACHE_SERVER=1
- set CLCACHE_HARDLINK=1
@@ -293,7 +292,7 @@ for:
$XSLInputElement.Transform((Resolve-Path $ctest_xml), (Join-Path (Resolve-Path .) "ctest-to-junit-results.xml"))
$wc = New-Object 'System.Net.WebClient'
$wc.UploadFile("https://ci.appveyor.com/api/testresults/junit/$($env:APPVEYOR_JOB_ID)", (Resolve-Path .\ctest-to-junit-results.xml))
-
+ - clcache -s
artifacts:
- path: 'cmake_build/*.msi'