Trying to match what the dashboard offers I believe we can follow these steps (I listed the features in a decreasing priority order):
- Add
kci-dev issues command, with the following subcommands:
1.1 kci-dev issues --origin <origin> that lists all issues from origin.
1.2 kci-dev issues details --id <id> gives detailed information of the issue with id. It supports multiple --id options.
1.3 kci-dev issues tests --id <id> lists all the tests related to the issue with id. It supports multiple --id.
1.4 kci-dev issues build --id <id> lists all builds related to the issue with id. You can query multiple issues using multiple --id options.
- Add
kci-dev hardware command:
2.1 kci-dev hardware list --origin <origin> that lists all available hardware for origin.
2.2 kci-dev hardware summary --id <id> gives a summary on the builds, boots and tests run of the hardware with id.
2.3 kci-dev hardware boots --id <id> lists the boots for the hardware with id. The response is similar to kci-dev results boots.
2.4 kci-dev hardware builds --id <id> lists the builds for the hardware with id. The response is similar to kci-dev results builds.
2.5 kci-dev hardware tests --id <id> lists the tests for the hardware with id. The response is similar to kci-dev results tests.
- Add
kci-dev results issues subcommand. We can obtain this information via api/tree/{commit}/full, however, it would be best if there was a api/tree/{commit]/issues available, since full retrieves information we would just discard.
- Add more options to
kci-dev results boots --filter YAML filter. The new options could be: config, compiler, architecture.
- Modify
kci-dev results --arch option. It could allow filtering by various architectures by supporting multiple --arch.
Please let me know how this looks to you.
Trying to match what the dashboard offers I believe we can follow these steps (I listed the features in a decreasing priority order):
kci-dev issuescommand, with the following subcommands:1.1
kci-dev issues --origin <origin>that lists all issues fromorigin.1.2
kci-dev issues details --id <id>gives detailed information of the issue withid. It supports multiple--idoptions.1.3
kci-dev issues tests --id <id>lists all the tests related to the issue withid. It supports multiple--id.1.4
kci-dev issues build --id <id>lists all builds related to the issue withid. You can query multiple issues using multiple--idoptions.kci-dev hardwarecommand:2.1
kci-dev hardware list --origin <origin>that lists all available hardware fororigin.2.2
kci-dev hardware summary --id <id>gives a summary on the builds, boots and tests run of the hardware withid.2.3
kci-dev hardware boots --id <id>lists the boots for the hardware withid. The response is similar tokci-dev results boots.2.4
kci-dev hardware builds --id <id>lists the builds for the hardware withid. The response is similar tokci-dev results builds.2.5
kci-dev hardware tests --id <id>lists the tests for the hardware withid. The response is similar tokci-dev results tests.kci-dev results issuessubcommand. We can obtain this information viaapi/tree/{commit}/full, however, it would be best if there was aapi/tree/{commit]/issuesavailable, sincefullretrieves information we would just discard.kci-dev results boots --filterYAML filter. The new options could be: config, compiler, architecture.kci-dev results--archoption. It could allow filtering by various architectures by supporting multiple--arch.Please let me know how this looks to you.