Skip to content

Commit

Permalink
chore(ci): Temporarily disable checking Testgrid (#3950)
Browse files Browse the repository at this point in the history
  • Loading branch information
rrpolanco authored Jan 13, 2023
1 parent db228f3 commit 134460f
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions bin/verify-testgrid-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ function main() {
unsupported_count=$(curl -d {} -s "https://api.testgrid.kurl.sh/api/v1/run/${run_id}" | jq '.instances[].isUnsupported' | grep -c true || true)
skipped_count=$(curl -d {} -s "https://api.testgrid.kurl.sh/api/v1/run/${run_id}" | jq '.instances[].isSkipped' | grep -c true || true)

if [[ $((success_count + failure_count + unsupported_count + skipped_count)) -ne ${total_runs} ]]; then
bail "Testgrid run ${run_id} seems to have pending runs"
fi
# TODO: Uncomment after release
# if [[ $((success_count + failure_count + unsupported_count + skipped_count)) -ne ${total_runs} ]]; then
# bail "Testgrid run ${run_id} seems to have pending runs"
# fi
}

main "$@"

0 comments on commit 134460f

Please sign in to comment.