Skip to content

Commit

Permalink
attempt to read
Browse files Browse the repository at this point in the history
  • Loading branch information
divagant-martian committed Jul 11, 2024
1 parent 5d2cf72 commit c3c915f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/flaky.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,12 @@ jobs:
path: nextest-results
pattern: libtest_run_${{ github.run_number }}-${{ github.run_attempt }}-*
merge-multiple: true
# run: ls nextest-results

run: |
ls nextest-results
for result in nextest-results/*.json; do
echo "$result"
jq --slurp '.[] | select(.type == "test" and .event == "failed" ) | .name' $result
done
- name: Notify discord on failure
uses: n0-computer/discord-webhook-notify@v1
if: ${{ env.TESTS_RESULT == 'failure' }}
Expand Down

0 comments on commit c3c915f

Please sign in to comment.