From 07524f29fb349bf3769c650fa9f3ad8aa72155fc 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 --- .azure/gpu-unittests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.azure/gpu-unittests.yml b/.azure/gpu-unittests.yml index 6bd336848f0..3b368269331 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 + continue-on-error: true displayName: "Show HF artifacts"