os-autoinst-distri-rocky/build-report.sh

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'