Skip to content

Commit

Permalink
add a fallback restore-key for poetry cache
Browse files Browse the repository at this point in the history
  • Loading branch information
krishanbhasin-gc committed Apr 24, 2023
1 parent 6db7460 commit 19d454b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion __tests__/cache-restore.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ virtualenvs.path = "{cache-dir}/virtualenvs" # /Users/patrick/Library/Caches/py
result = 'pipenv cache is not found';
break;
case 'poetry':
result = 'poetry cache is not found';
result = `Cache restored from key: ${pipFileLockHash}`;
break;
}

Expand Down
4 changes: 2 additions & 2 deletions dist/setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66750,10 +66750,10 @@ class PoetryCache extends cache_distributor_1.default {
const hash = yield glob.hashFiles(this.patterns);
// "v2" is here to invalidate old caches of this cache distributor, which were created broken:
const primaryKey = `${this.CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-python-${this.pythonVersion}-${this.packageManager}-v2-${hash}`;
const restoreKey = undefined;
const restoreKey = `${this.CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-python-${this.pythonVersion}-${this.packageManager}-v2-`;
return {
primaryKey,
restoreKey
restoreKey: [restoreKey]
};
});
}
Expand Down
4 changes: 2 additions & 2 deletions src/cache-distributions/poetry-cache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ class PoetryCache extends CacheDistributor {
const hash = await glob.hashFiles(this.patterns);
// "v2" is here to invalidate old caches of this cache distributor, which were created broken:
const primaryKey = `${this.CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-python-${this.pythonVersion}-${this.packageManager}-v2-${hash}`;
const restoreKey = undefined;
const restoreKey = `${this.CACHE_KEY_PREFIX}-${process.env['RUNNER_OS']}-python-${this.pythonVersion}-${this.packageManager}-v2-`;
return {
primaryKey,
restoreKey
restoreKey: [restoreKey]
};
}

Expand Down

0 comments on commit 19d454b

Please sign in to comment.