Skip to content
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

Añadir cache uv a Github Actions #44

Closed
albertotb opened this issue Jul 19, 2024 · 3 comments
Closed

Añadir cache uv a Github Actions #44

albertotb opened this issue Jul 19, 2024 · 3 comments
Labels
documentation Improvements or additions to documentation

Comments

@albertotb
Copy link
Member

Para runners que son self-hosted hay que evitar usar cache de 'pip' en self-hosted, ya que esta cache se almacena en los servidores de Github. Se puede cachear a mano y usar https://github.com/maxnowack/local-cache en vez de actions/cache.

Para runners de Github, la Action de python soporta cachear los paquetes instalados con "pip", de forma que no tenga que volver a bajarlos. También se puede cachear todo el entorno virtual con
https://adamj.eu/tech/2023/11/02/github-actions-faster-python-virtual-environments/

En el caso de uv, hay una PR abierta para añadir soporte en la Action de python actions/setup-python#822, aunque algunas personas reportan que no mejora la eficiencia, porque uv ya es muy rápido y el tiempo que tarda en restaurar el cache es similar al tiempo de instalar todo sin cache. Se podría probar a cachear todo el entorno virtual en lugar del directorio de la cache de "uv"

@albertotb
Copy link
Member Author

Han creado una Action que hace justo eso, https://github.com/hynek/setup-cached-uv

@albertotb
Copy link
Member Author

Otra action: https://github.com/eifinger/setup-uv

@albertotb albertotb added the documentation Improvements or additions to documentation label Sep 3, 2024
@albertotb
Copy link
Member Author

Cierro porque se lleva el seguimiento en #53

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation
Projects
None yet
Development

No branches or pull requests

1 participant