Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Fix the tests-done github actions step, again #10512

Merged
merged 4 commits into from
Aug 2, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -370,10 +370,13 @@ jobs:
# the `jq` incantation dumps out a series of "<job> <result>" lines
run: |
set -o pipefail
rc=0
jq -r 'to_entries[] | [.key,.value.result] | join(" ")' \
<<< $NEEDS_CONTEXT |
while read job result; do
if [ "$result" != "success" ]; then
echo "::set-failed ::Job $job returned $result"
rc=1
fi
done
exit $rc
1 change: 1 addition & 0 deletions changelog.d/10512.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Update the `tests-done` Github Actions status.