From 7872739d3c1d02e68982ac2e6767f6233e515637 Mon Sep 17 00:00:00 2001 From: "Justin M. Keyes" Date: Mon, 8 Apr 2019 01:19:38 +0200 Subject: [PATCH] CI/AppVeyor: print info about restored cache --- ci/build.ps1 | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ci/build.ps1 b/ci/build.ps1 index ea1acfac00..4f2b748284 100644 --- a/ci/build.ps1 +++ b/ci/build.ps1 @@ -26,8 +26,10 @@ function exitIfFailed() { } if (-Not (Test-Path -PathType container $nvimCmakeVars["DEPS_BUILD_DIR"])) { - write-host "cache not restored (deps dir not found): $($nvimCmakeVars['DEPS_BUILD_DIR'])" + write-host "cache dir not found: $($nvimCmakeVars['DEPS_BUILD_DIR'])" mkdir $nvimCmakeVars["DEPS_BUILD_DIR"] +} else { + write-host "cache dir ($nvimCmakeVars['DEPS_BUILD_DIR']) size: $(Get-ChildItem $nvimCmakeVars['DEPS_BUILD_DIR'] -recurse | Measure-Object -property length -sum | Select -expand sum)" } if ($compiler -eq 'MINGW') {