Skip to content

Commit

Permalink
Output platform combination. Remove JOB_NAME_PATTERN global
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed Oct 11, 2023
1 parent 984607d commit ade9e70
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions release.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,8 +554,6 @@ def go(argv):
# name must be modified in the future
params['SOURCE_TARBALL_URI'] = args.nightly_branch

job_name = JOB_NAME_PATTERN % (args.package)

# RELEASING FOR BREW
if not NIGHTLY and not args.bump_rev_linux_only:
call_jenkins_build(GENERIC_BREW_PULLREQUEST_JOB,
Expand Down Expand Up @@ -607,7 +605,8 @@ def go(argv):
assert a == 'amd64', f'Nightly tag assumed amd64 but arch is {a}'
linux_platform_params['JENKINS_NODE_TAG'] = 'linux-nightly-' + d

call_jenkins_build(job_name, linux_platform_params, 'Linux')
call_jenkins_build(f"{args.package}-debbuilder",
linux_platform_params, f"{l} {d}/{a}")


if __name__ == '__main__':
Expand Down

0 comments on commit ade9e70

Please sign in to comment.