Skip to content

Commit

Permalink
Upload test logs when test fails.
Browse files Browse the repository at this point in the history
  • Loading branch information
oschwaldp-oci committed Jul 25, 2023
1 parent d8f5ec8 commit 43dbf43
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/contract.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,3 +220,15 @@ jobs:
if: always()
run: |
cat $(find . -name eos-evm-node.stderr)
- name: Prepare Logs
if: failure()
run: |
tar -czf leap-int-test-logs.tar.gz TestLogs/*
- name: Upload logs from failed tests
uses: actions/upload-artifact@v3
if: failure()
with:
name: leap-int-test-logs.tar.gz
path: leap-int-test-logs.tar.gz

0 comments on commit 43dbf43

Please sign in to comment.