Skip to content

Commit

Permalink
Merge pull request #337 from manfredi/fix_build_checks
Browse files Browse the repository at this point in the history
Improve build_check by searching the exit status inside logs
  • Loading branch information
okurz authored Aug 7, 2024
2 parents 683888f + 9d0ed7c commit a8daa4e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openqa-search-maintenance-core-jobs
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ search_build_checks() {
if [[ -n $logs ]]; then
echo "Build checks url: $index"
for log in $logs; do
echo "curl -sLk '$index/$log' | grep -B1 -A9 -i -E 'summary'"
curl -sLk "$index/$log" | grep -B1 -A9 -i -E 'summary' || true
echo "curl -sLk '$index/$log' | grep ' + exit '"
curl -sLk "$index/$log" | grep '+ exit ' || true
echo ""
done
fi
Expand Down

0 comments on commit a8daa4e

Please sign in to comment.