- Notifications
You must be signed in to change notification settings - Fork396
Optimizada sincronización con CPython en CI#1186
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
e210388
to76bd613
Compare76bd613
to8c150f1
CompareThere 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.
Me parece bien. Podrías cerrar y volver abrir el pr a ver si corre el CI? A nosotros nos interesa el proyecto no? No la historia git cierto? Se podría pensar en hacer algún wget para traer el proyecto?
mondeja commentedDec 24, 2020 • edited
Loading Uh oh!
There was an error while loading.Please reload this page.
edited
Uh oh!
There was an error while loading.Please reload this page.
Probé a hacer un simple clone perofallaba en el paso de construir la documentación con algunas directivas |
Co-authored-by: Cristián Maureira-Fredes <Cristian.Maureira-Fredes@qt.io>
Este pull optimiza la sincronización con CPython en el CI, ahorrando como mínimo 1 minuto. El problema es que la configuración actual realiza un clone completo (incluído historial GIT) de
python/cpython
, pero esto no es necesario y será cada vez más costoso a medida que más commits sean añadidos a CPython. Añadiendo--depth=1
agit submodule update
y eliminando el comando redundantegit submodule sync
, obtenemos el mismo resultado que actualmente en menos tiempo.