bin/ci_run_n_monitor: print in which repo we're looking for the pipeline
authorEric Engestrom <eric@igalia.com>
Mon, 11 Sep 2023 13:58:17 +0000 (14:58 +0100)
committerMarge Bot <emma+marge@anholt.net>
Tue, 12 Sep 2023 17:42:33 +0000 (17:42 +0000)
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25153>

bin/ci/gitlab_common.py

index 8497dfb..99ebc0e 100644 (file)
@@ -32,7 +32,7 @@ def read_token(token_arg: Optional[str]) -> str:
 
 def wait_for_pipeline(project, sha: str):
     """await until pipeline appears in Gitlab"""
-    print("⏲ for the pipeline to appear..", end="")
+    print(f"⏲ for the pipeline to appear in {project.path_with_namespace}..", end="")
     while True:
         pipelines = project.pipelines.list(sha=sha)
         if pipelines: