From 3e961f48672c0a3f0c4f499caee12ae9251bd1dc Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Wed, 4 Jan 2023 12:32:47 +0900 Subject: [PATCH] mkdirUpdate .azure/gpu-pipeline.yml --- .azure/gpu-pipeline.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.azure/gpu-pipeline.yml b/.azure/gpu-pipeline.yml index 2caafb2bab7..c9ce754cc27 100644 --- a/.azure/gpu-pipeline.yml +++ b/.azure/gpu-pipeline.yml @@ -105,7 +105,8 @@ jobs: - bash: | printf "cache location: $(HF_CACHE_DIR)\n" printf "hit the HF cache: $(variables.HF_CACHE_RESTORED)\n" - ls -lh $(HF_CACHE_DIR) + mkdir -p $(HF_CACHE_DIR) # in case cache was void + ls -lh $(HF_CACHE_DIR) # show what was restored... displayName: 'Show HF cache' - bash: python -m pytest torchmetrics --cov=torchmetrics --timeout=120 --durations=50