From a55a415f1f9d4fa52e708adf0f50f3954d371082 Mon Sep 17 00:00:00 2001 From: Jirka Date: Thu, 14 Mar 2024 13:17:09 +0100 Subject: [PATCH] ci/gpu: do not fail if HF cache is not present (cherry picked from commit 03ae3150dbf4e9a444ae6acf294e338b06d7e81d) --- .azure/gpu-unittests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure/gpu-unittests.yml b/.azure/gpu-unittests.yml index 6bd336848f0..f59d9e751ef 100644 --- a/.azure/gpu-unittests.yml +++ b/.azure/gpu-unittests.yml @@ -210,4 +210,6 @@ jobs: - bash: | printf "cache location: $(HF_HOME)\n" ls -lh $(HF_HOME) # show what was restored... + # do not fail if the cache is not present + continueOnError: "true" displayName: "Show HF artifacts"