On 05. 10. 20 11:59, Zbigniew Jędrzejewski-Szmek wrote:
I'd like to introspect a side tag:
'koji list-pkgs --tag f34-build-side-31299' lists many many packages.
'koji list-pkgs --noinherit --tag f34-build-side-31299' lists nothing.
Is there some command which would list packages that are in the side tag?

Partial answer:

This will give you list of latest builds tagged into the side tag:

    $ koji list-tagged --latest f34-build-side-31299

From that you can get package names via usual shell piping.

    $ koji list-tagged f34-build-side-31299 | cut -f1 -d" " | pkgname

Similarly, this is the web UI for the same:

https://koji.fedoraproject.org/koji/builds?latest=1&tagID=31299&order=-completion_time&inherited=0

(Errors now, no idea why.)

However, I don't know how to list all builds (failed or not, finished or not).

--
Miro Hrončok
--
Phone: +420777974800
IRC: mhroncok
_______________________________________________
devel mailing list -- devel@lists.fedoraproject.org
To unsubscribe send an email to devel-le...@lists.fedoraproject.org
Fedora Code of Conduct: 
https://docs.fedoraproject.org/en-US/project/code-of-conduct/
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/devel@lists.fedoraproject.org

Reply via email to