mirror of
https://github.com/rocky-linux/os-autoinst-distri-rocky.git
synced 2024-11-04 21:11:24 +00:00
14 lines
383 B
Bash
Executable File
14 lines
383 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
BUILD_NAME=$1
|
|
|
|
printf '# Build%s\n' "$BUILD_NAME"
|
|
printf "| Test | Result | Failure Reason | Effort to Fix | Notes |\n"
|
|
printf "| ---- | ------ | -------------- | ------------- | ----- |\n"
|
|
|
|
openqa-cli api -X GET jobs build="$BUILD_NAME" | \
|
|
jq -r '.jobs[] | {name,result} | join(" | ") | split("-") | last' | \
|
|
sort | \
|
|
sed 's,^,| ,g;s,$, | | | |,g'
|