Skip to content

Commit

Permalink
support candlepin and pulpcore pipes in ci-jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
evgeni committed Jun 14, 2024
1 parent d32f3b3 commit 527d9c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ci-jobs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def pipeline(args):
parameters = {
'expected_version': args.version,
}
elif args.type == 'katello':
elif args.type in ('katello', 'candlepin', 'pulpcore'):
job = f'{args.type}-{major}.{minor}-rpm-pipeline'
else:
job = f'foreman-{args.type}-{major}.{minor}-rpm-pipeline'
Expand Down Expand Up @@ -183,7 +183,7 @@ def main():

pipeline_parser = subparsers.add_parser('pipeline', help='Run a pipeline')
pipeline_parser.set_defaults(func=pipeline)
pipeline_parser.add_argument('type', choices=('foreman', 'client', 'plugins', 'katello'))
pipeline_parser.add_argument('type', choices=('foreman', 'client', 'plugins', 'katello', 'candlepin', 'pulpcore'))
pipeline_parser.add_argument('version', help='The full version like 1.24.0-RC1')
pipeline_parser.add_argument('--no-wait', action='store_false', dest='wait',
help="Don't wait for the job to complete and exit immediately")
Expand Down

0 comments on commit 527d9c2

Please sign in to comment.