neels submitted this change.

View Change

Approvals: Jenkins Builder: Verified laforge: Looks good to me, but someone else must approve osmith: Looks good to me, approved
obs: tweak logging output

Change-Id: I203cb7f0aa21b59b06973e8f329cffdc64aa8d47
---
M scripts/obs/lib/git.py
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/scripts/obs/lib/git.py b/scripts/obs/lib/git.py
index 67f1d5e..29c183b 100644
--- a/scripts/obs/lib/git.py
+++ b/scripts/obs/lib/git.py
@@ -28,10 +28,10 @@

if os.path.exists(repo_path):
if fetch:
- print(f"{project}: cloning {url} (cached, fetching)")
+ print(f"{project}: 'git fetch'")
lib.run_cmd(["git", "fetch"], cwd=repo_path)
else:
- print(f"{project}: cloning {url} (cached, not fetching)")
+ print(f"{project}: using cached {url} (not cloning, not fetching)")
return

print(f"{project}: cloning {url}")
@@ -46,13 +46,15 @@

def clean(project):
repo_path = get_repo_path(project)
+ print(f"{project}: 'git clean -ffxd'")
lib.run_cmd(["git", "clean", "-ffxd"], cwd=repo_path)


def checkout(project, branch):
repo_path = get_repo_path(project)
- print(f"{project}: checking out {branch}")
+ print(f"{project}: 'git checkout -f {branch}'")
lib.run_cmd(["git", "checkout", "-f", branch], cwd=repo_path)
+ print(f"{project}: 'git reset --hard {branch}'")
lib.run_cmd(["git", "reset", "--hard", branch], cwd=repo_path)



null

To view, visit change 29117. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-ci
Gerrit-Branch: master
Gerrit-Change-Id: I203cb7f0aa21b59b06973e8f329cffdc64aa8d47
Gerrit-Change-Number: 29117
Gerrit-PatchSet: 4
Gerrit-Owner: neels <nhofmeyr@sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-Reviewer: osmith <osmith@sysmocom.de>
Gerrit-MessageType: merged