Skip to content
Snippets Groups Projects
Commit b0be529b authored by Dmitry Petrov's avatar Dmitry Petrov
Browse files

handle_artifacts: fix case when pipeline was canceled

parent 1a4a5ab1
No related branches found
No related tags found
1 merge request!395CI: handle_artifacts,image_diff: various fixes for pipeline in charge of preserving build artifacts
...@@ -11,9 +11,12 @@ class FullBuildPipeline: ...@@ -11,9 +11,12 @@ class FullBuildPipeline:
self.project = project self.project = project
self.commit_sha = commit_sha self.commit_sha = commit_sha
self.upstream_pipeline = self.__get_upstream_pipeline() self.upstream_pipeline = self.__get_upstream_pipeline()
self.build_pipelines = self.__get_build_pipelines()
def __get_upstream_pipeline(self) -> ProjectPipeline: self.build_pipelines = None
if self.upstream_pipeline:
self.build_pipelines = self.__get_build_pipelines()
def __get_upstream_pipeline(self, retry=1) -> ProjectPipeline:
""" """
Get upstream (main) pipeline for the specified commit in the repository. Get upstream (main) pipeline for the specified commit in the repository.
...@@ -26,7 +29,7 @@ class FullBuildPipeline: ...@@ -26,7 +29,7 @@ class FullBuildPipeline:
) )
if not pipelines_for_commit: if not pipelines_for_commit:
return {} return None
# For the main branch we have two types of pipelines: short and full. # For the main branch we have two types of pipelines: short and full.
# The short one just retriggers the full pipeline and does not contain any artifacts. # The short one just retriggers the full pipeline and does not contain any artifacts.
...@@ -39,6 +42,12 @@ class FullBuildPipeline: ...@@ -39,6 +42,12 @@ class FullBuildPipeline:
if p.source != "push": if p.source != "push":
build_pipeline = p build_pipeline = p
# If the previous pipeline was canceled and a new one has not yet been created,
# wait for 10 seconds and then try again.
if build_pipeline.status == "canceled" and retry:
time.sleep(10)
return self.__get_upstream_pipeline(retry=0)
return build_pipeline return build_pipeline
def __get_build_pipelines(self) -> dict[str, tuple[ProjectPipelineJob]]: def __get_build_pipelines(self) -> dict[str, tuple[ProjectPipelineJob]]:
...@@ -104,7 +113,8 @@ class FullBuildPipeline: ...@@ -104,7 +113,8 @@ class FullBuildPipeline:
try: try:
jobs = self.build_pipelines[pipeline_name] jobs = self.build_pipelines[pipeline_name]
except KeyError: except KeyError:
return None print(f"Failed to get build jobs for '{pipeline_name}' pipeline")
return ()
for job in jobs: for job in jobs:
if fnmatch.fnmatch(job.name, job_filter): if fnmatch.fnmatch(job.name, job_filter):
......
...@@ -60,10 +60,10 @@ def main(): ...@@ -60,10 +60,10 @@ def main():
latest_successful_build_sha = None latest_successful_build_sha = None
for commit in manifest_commits: for commit in manifest_commits:
if ( pipeline = FullBuildPipeline(manifest_project, commit.id)
FullBuildPipeline(manifest_project, commit.id).upstream_pipeline.status if not pipeline.upstream_pipeline:
!= "success" continue
): if pipeline.upstream_pipeline.status != "success":
continue continue
else: else:
latest_successful_build_sha = commit.id latest_successful_build_sha = commit.id
...@@ -88,7 +88,11 @@ def main(): ...@@ -88,7 +88,11 @@ def main():
for commit in manifest_commits: for commit in manifest_commits:
full_build_pipeline = FullBuildPipeline(manifest_project, commit.id) full_build_pipeline = FullBuildPipeline(manifest_project, commit.id)
if not full_build_pipeline.upstream_pipeline:
continue
print(f"Full pipeline: {full_build_pipeline.upstream_pipeline}") print(f"Full pipeline: {full_build_pipeline.upstream_pipeline}")
for pipelinejob in full_build_pipeline.get_jobs(): for pipelinejob in full_build_pipeline.get_jobs():
if pipelinejob.status != "success": if pipelinejob.status != "success":
......
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