mirror of
https://github.com/openSUSE/osc.git
synced 2024-11-09 22:36:14 +01:00
show build results of multibuild packages by default
Be in sync with webui. Also it is assumed that a user wants to see all build results of the source change he did and not only for a subset.
This commit is contained in:
parent
943a53d4d8
commit
885dd3fecd
1
NEWS
1
NEWS
@ -1,5 +1,6 @@
|
||||
0.157
|
||||
- add unpublish command (requires OBS 2.8)
|
||||
- results: show multibuild results by default
|
||||
|
||||
0.156
|
||||
- highlight scheduled jobs with dispatch problems (due to constraints)
|
||||
|
@ -4977,8 +4977,8 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
||||
help='Show results only for specified architecture(s)')
|
||||
@cmdln.option('-v', '--verbose', action='store_true', default=False,
|
||||
help='more verbose output')
|
||||
@cmdln.option('-m', '--multibuild', action='store_true', default=False,
|
||||
help='Show results for all packages in multibuild')
|
||||
@cmdln.option('--no-multibuild', action='store_true', default=False,
|
||||
help='Disable results for all direct affect packages inside of the project')
|
||||
@cmdln.option('-M', '--multibuild-package', action='append', default=[],
|
||||
help='Only show results for the specified multibuild package')
|
||||
@cmdln.option('-w', '--watch', action='store_true', default=False,
|
||||
@ -5040,9 +5040,10 @@ Please submit there instead, or use --nodevelproject to force direct submission.
|
||||
'lastbuild': opts.last_build, 'repository': opts.repo,
|
||||
'arch': opts.arch, 'wait': opts.watch}
|
||||
if opts.multibuild_package:
|
||||
opts.multibuild = True
|
||||
opts.no_multibuild = False
|
||||
kwargs['multibuild_packages'] = opts.multibuild_package
|
||||
kwargs['multibuild'] = kwargs['locallink'] = opts.multibuild
|
||||
if not opts.no_multibuild:
|
||||
kwargs['multibuild'] = kwargs['locallink'] = True
|
||||
if opts.xml or opts.csv:
|
||||
for xml in get_package_results(**kwargs):
|
||||
if opts.xml:
|
||||
|
Loading…
Reference in New Issue
Block a user