Skip to content

Commit

Permalink
Update integration.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
vsmalladi authored Apr 26, 2024
1 parent bb53aed commit 4eeae0e
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ jobs:
--symlink tests/ --basetemp ~/temp
- name: Check miniwdl log in case of failure.
if: ${{ failure() }}
run: ls -ltra /home/runner/temp/*
# Get the last 1000 lines of the miniwdl log to catch the error.
run: bash -c 'tail -n 1000 /home/runner/temp/*/task.out'
run: |
ls -ltra /home/runner/temp/*
# Get the last 1000 lines of the miniwdl log to catch the error.
bash -c 'tail -n 1000 /home/runner/temp/*/task.out'
- name: Check job stderr messages in case of failure
if: ${{ failure() }}
run: >-
Expand Down

0 comments on commit 4eeae0e

Please sign in to comment.