Optimizada sincronización con CPython en CI #1186
Open
+1
−2
Conversation
e210388
to
76bd613
|
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? |
Probé a hacer un simple clone pero fallaba en el paso de construir la documentación con algunas directivas |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
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=1agit submodule updatey eliminando el comando redundantegit submodule sync, obtenemos el mismo resultado que actualmente en menos tiempo.