os-autoinst-distri-rocky/EXAMPLES.md
akatch dd209f70e3
Add wrapper script (#63)
* Add wrapper script

* Default build name uses ROCKY_VERSION

* Wrapper script to print simple build report in Markdown format

* Some openqa-cli example commands

* Include BUILD_NAME in report header

* Additional columns

* Extra hyphen

* Added @tcooper's suggestion
2021-11-20 10:29:01 -08:00

617 B

Query all jobs from a named build

openqa-cli api -X GET jobs build=$BUILDNAME

Failed jobs in a named build

The overview on the openQA home page counts incompletes as failures

openqa-cli api -X GET jobs build=$BUILDNAME result=failed,incomplete

Print a simple report of all tests and their results from a named build

openqa-cli api -X GET jobs build=$BUILDNAME | jq -r '.jobs[] | {name,result} | join(" ") | split("-") | last' | sort

Further Reading

openqa-cli cheat sheet jq cheat sheet