From 4285a96511add973ef62b1bd84e426cb6a1687ff Mon Sep 17 00:00:00 2001 From: Mikhail Goncharov Date: Thu, 31 Aug 2023 16:32:16 +0200 Subject: [PATCH] trigger new pipeline that will replace current setup --- scripts/pipeline_create_branch.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/scripts/pipeline_create_branch.py b/scripts/pipeline_create_branch.py index 9ee06d3..4ffbcbd 100755 --- a/scripts/pipeline_create_branch.py +++ b/scripts/pipeline_create_branch.py @@ -88,14 +88,14 @@ if __name__ == '__main__': }, } steps.append(trigger_build_step) - # steps.append({ - # 'trigger': 'experimental-goncharov', - # 'label': ':rocket: build and test (test)', - # 'async': False, - # 'depends_on': 'create-branch', - # 'build': { - # 'branch': f'phab-diff-{diff_id}', - # 'env': env, - # }, - # }) + steps.append({ + 'trigger': 'experimental-goncharov', + 'label': ':rocket: build and test (test)', + 'async': False, + 'depends_on': 'create-branch', + 'build': { + 'branch': f'phab-diff-{diff_id}', + 'env': env, + }, + }) print(yaml.dump({'steps': steps}))