We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A weird failure surfaced during the Lint step in CI:
Run 1: https://github.com/pypi/warehouse/actions/runs/5358896351/jobs/9721824117?pr=14012 Run 2: https://github.com/pypi/warehouse/actions/runs/5358896351/jobs/9721955335#step:7:87
Deleting the Cache and rerunning all jobs succeeded.
Turns out that we made our own cache collision by reusing the same key for the python env and the mypy cache results.
These two are the same cache and should be the same:
warehouse/.github/workflows/ci.yml
Line 37 in 8d01d4b
Line 101 in 8d01d4b
The mypy cache should probably have a unique identifier tacked on to the end:
Lines 95 to 96 in 8d01d4b
The text was updated successfully, but these errors were encountered:
give mypy its own cache, closes #14013
5a2a2bc
aaa537f
No branches or pull requests
A weird failure surfaced during the Lint step in CI:
Run 1: https://github.com/pypi/warehouse/actions/runs/5358896351/jobs/9721824117?pr=14012
Run 2: https://github.com/pypi/warehouse/actions/runs/5358896351/jobs/9721955335#step:7:87
Deleting the Cache and rerunning all jobs succeeded.
Turns out that we made our own cache collision by reusing the same key for the python env and the mypy cache results.
These two are the same cache and should be the same:
warehouse/.github/workflows/ci.yml
Line 37 in 8d01d4b
warehouse/.github/workflows/ci.yml
Line 101 in 8d01d4b
The mypy cache should probably have a unique identifier tacked on to the end:
warehouse/.github/workflows/ci.yml
Lines 95 to 96 in 8d01d4b
The text was updated successfully, but these errors were encountered: