Hi,
Under my .gitlab-ci.yaml
I have:
cache:
untracked: true
policy: pull-push
Couple weeks ago I was able to cache untracked artifacts and pull/push them automatically; this is not happening anymore. Additional info: the pipeline didn’t change. I am using shared runners. Currently, I have a tiny untracked text file only. Silver plan.
Last week:
Restoring cache
00:02
Checking cache for default...
Downloading cache.zip from https://storage.googleapis.com/gitlab-com-runners-cache/project/xxx/default
Successfully extracted cache
Downloading artifacts
(...)
Saving cache
00:02
Creating cache default...
untracked: found 1 files
Uploading cache.zip to https://storage.googleapis.com/gitlab-com-runners-cache/project/xxx/default
Created cache
Uploading artifacts for successful job
00:01
Job succeeded
Now I see this:
Restoring cache
Checking cache for default...
WARNING: Retrying... error=received: 500 Internal Server Error
WARNING: Retrying... error=received: 500 Internal Server Error
FATAL: received: 500 Internal Server Error
Failed to extract cache
Downloading artifacts
(...)
Saving cache
00:05
Creating cache default...
untracked: found 1 files
Uploading cache.zip to https://storage.googleapis.com/gitlab-org-ci-runners-cache/project/xxx/default
WARNING: Retrying... error=received: 500 Internal Server Error
Uploading cache.zip to https://storage.googleapis.com/gitlab-org-ci-runners-cache/project/xxx/default
WARNING: Retrying... error=received: 500 Internal Server Error
Uploading cache.zip to https://storage.googleapis.com/gitlab-org-ci-runners-cache/project/xxx/default
FATAL: received: 500 Internal Server Error
Failed to create cache
Uploading artifacts for successful job
Job succeeded
Any tip how to debug/solve this? Thank you.
Cheers,
F