Skip to content

Commit

Permalink
Exit with error when RAPIDS CI fails.
Browse files Browse the repository at this point in the history
[skip-matrix][skip-docs][skip-vdc]
  • Loading branch information
alliepiper committed Jan 14, 2025
1 parent 08420d4 commit 44bdc54
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-rapids.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,13 @@ jobs:
sccache --show-adv-stats
done
done
# Exit with error if any failures occurred
if test ${#failures[@]} -ne 0; then
echo "::error:: Libraries failed to build: ${failures[*]}"
exit 1
fi
EOF
chmod +x "$RUNNER_TEMP"/ci{,-entrypoint}.sh
Expand Down

0 comments on commit 44bdc54

Please sign in to comment.