You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
my bashlib.sh is empty. the repo is a yarn workspace with with mutiple node_modules per package and one central yarn.lock in the root. my caches.js looks like this:
RESTORE cache for yarn
{
"key": "node_cache-bb0f60c22d383a41f4d3950c20b74841563c8e3c0d2b822a9292b696b4814685",
"path": "/runner/_work/lala/lala/yarn_cache\n/runner/_work/lala/lala/packages/*/node_modules\n/runner/_work/lala/lala/node_modules",
"restore-keys": "node_cache-"
}
Cache Size: ~425 MB (445803354 B)
/bin/tar -xz -f /runner/_work/_temp/3c78631a-30ee-4b15-b765-ea18712c1fbc/cache.tgz -P -C /runner/_work/lala/lala
Cache restored from key: node_cache-bb0f60c22d383a41f4d3950c20b74841563c8e3c0d2b822a9292b696b4814685
....
SAVE cache for dist
{
"key": "build-c28b9db-e1a99fa0c6e3c7e0295453e15e2ffde982539bb896f3eae11c5a9d7a304d6c3e",
"path": "/runner/_work/lala/lala/packages/*/dist",
"restore-keys": "build-c28b9db-"
}
[warning]Error retrieving key from state.
BUT in the somebuild job, this happens:
RESTORE cache for yarn
{
"key": "node_cache-c40d35d9ab4b712eab3f752dec1f6f46b6849aed82f6a72b3120e3c52626d134",
"path": "/home/runner/work/lala/lala/yarn_cache\n/home/runner/work/lala/lala/packages/*/node_modules\n/home/runner/work/lala/lala/node_modules",
"restore-keys": "node_cache-"
}
Cache not found for input keys: node_cache-c40d35d9ab4b712eab3f752dec1f6f46b6849aed82f6a72b3120e3c52626d134, node_cache-
....
RESTORE cache for dist
{
"key": "build-c28b9db-8b94d46b2e2881a63dd91581c1e9be37e418d5899b716a8b1156534fe9faf565",
"path": "/home/runner/work/lala/lala/packages/*/dist",
"restore-keys": "build-c28b9db-"
}
Cache not found for input keys: build-c28b9db-8b94d46b2e2881a63dd91581c1e9be37e418d5899b716a8b1156534fe9faf565, build-c28b9db-
So clearly the hash changed between those two. I don't get how that could happen. Interesting enough: the hash suffix even changes between yarn and dist. inside the same job. ideas? Is the jobid somehow part of the hash?
The text was updated successfully, but these errors were encountered:
hi i have a workflow with multiple jobs:
my
bashlib.sh
is empty. the repo is a yarn workspace with with mutiplenode_modules
per package and one centralyarn.lock
in the root. mycaches.js
looks like this:In the
prepare workspace
job, this happens:BUT in the
somebuild
job, this happens:So clearly the hash changed between those two. I don't get how that could happen. Interesting enough: the hash suffix even changes between yarn and dist. inside the same job. ideas? Is the jobid somehow part of the hash?
The text was updated successfully, but these errors were encountered: