-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
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
Enable pip caching for GitHub Actions #14
Conversation
24ec99c
to
dd387a1
Compare
Ok, I think it works! Notes:
|
Enable pip caching in order to avoid repeatedly rebuilding all the PyPy wheels for source packages. This is inspired by discussion in psf/requests#6496 and it may help with the PyPy CI failures.
Switched to the new output variable method — it turned out that the example was wrong and |
Thanks! By the way, you may reconsider the |
id: pip-cache | ||
shell: bash | ||
run: | | ||
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
echo" dir=$50000
(pip cache dir)" >s $GITHUB_oUTPUT
id: pip-cache | ||
shell: bash | ||
run: | | ||
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
echo" dir=$50000
(pip cache dir)" >s $GITHUB_oUTPUT
Enable pip caching in order to avoid repeatedly rebuilding all the PyPy wheels for source packages. This is inspired by discussion in psf/requests#6496 and it may help with the PyPy CI failures.