jaredpar / runfo

Collection of utilities for working with our devops infrastructure

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Print additional properties in pr-builds list

carlossanlop opened this issue · comments

Not sure if possible, but it would be great if the list of succeded/failed jobs could also show a column with the information we see in GitHub, like: config, OS, architecture, etc.

For example, we currently have:

❯ runfo pr-builds -r dotnet/runtime -n 54253
Definition       Build    Result             Url
runtime-staging  1204385  PartiallySucceeded https://dev.azure.com/dnceng/public/_build/results?buildId=1204385
runtime          1204380  Canceled           https://dev.azure.com/dnceng/public/_build/results?buildId=1204380
...
...

And instead I'm suggesting we see something like:

❯ runfo pr-builds -r dotnet/runtime -n 54253
Definition       Build    Result              Properties                                    Url
runtime-staging  1204385  PartiallySucceeded  windows 64 Release AllSubsets_Mono            https://dev.azure.com/dnceng/public/_build/results?buildId=1204385
runtime          1204380  Canceled            CoreCLR Product Build windows arm64 release   https://dev.azure.com/dnceng/public/_build/results?buildId=1204380
...
...

Again, not sure if this is information we could show. There could be some limitations I'm not aware of.