Skip to content
Snippets Groups Projects
Unverified Commit 522356f4 authored by Caleb Connolly's avatar Caleb Connolly :recycle:
Browse files

helpers: git: retry clone


helps with intermitten DNS errors in CI maybe

Signed-off-by: default avatarCaleb Connolly <caleb@postmarketos.org>
parent 8f411de4
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !2453. Comments created here will be created in the context of that merge request.
......@@ -138,7 +138,8 @@ force build aarch64:
tags: [arm64]
script:
# Packages chosen for being small, unlikely to break, and for langauge coverage.
- .ci/integration_tests/force_build x86_64 hello-world postmarketos-mkinitfs
# It's currently NOT possible to cross build mkinitfs for x86_64 on ARM64.
- .ci/integration_tests/force_build x86_64 hello-world pbsplash #postmarketos-mkinitfs
- .ci/integration_tests/force_build aarch64 hello-world postmarketos-mkinitfs
- .ci/integration_tests/force_build armv7 hello-world postmarketos-mkinitfs
......@@ -156,7 +157,7 @@ force_strict build aarch64:
tags: [arm64]
script:
# Packages chosen for being small, unlikely to break, and for langauge coverage.
- .ci/integration_tests/force_strict_build x86_64 hello-world postmarketos-mkinitfs
- .ci/integration_tests/force_strict_build x86_64 hello-world #postmarketos-mkinitfs
- .ci/integration_tests/force_strict_build aarch64 hello-world postmarketos-mkinitfs
pkgrel_bump amd64:
......
......@@ -56,7 +56,16 @@ def clone(name_repo: str) -> None:
# Create parent dir and clone
logging.info(f"Clone git repository: {url}")
(get_context().config.work / "cache_git").mkdir(exist_ok=True)
pmb.helpers.run.user(command, output="stdout")
tries = 3
while tries > 0:
try:
pmb.helpers.run.user(command, output="stdout")
break
except RuntimeError as e:
tries -= 1
logging.error(f"Failed to clone repository, trying {tries} more times: {e}")
if tries == 0:
raise
# FETCH_HEAD does not exist after initial clone. Create it, so
# is_outdated() can use it.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment