Skip to content

Commit

Permalink
add reco-icetray logs step
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed Sep 28, 2023
1 parent 5d25a36 commit 733b3e7
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,14 @@ jobs:
nsides = "${{ matrix.nsides }}"
assert len(pydict) == nsides.count(":")
'
- name: reco-icetray logs
if: always()
run: |
sudo apt install tree
tree $SKYSCAN_DEBUG_DIR
find $SKYSCAN_DEBUG_DIR -type f -not -name "*.i3" -not -name "*.pkl" -exec "more" {} + | cat # recursively cats with filenames (delimited by :::::::)
- name: broker docker logs
if: always()
run: |
Expand Down Expand Up @@ -379,6 +387,14 @@ jobs:
--expected tests/data/results_json/${{ matrix.reco_algo }}/$(basename $outfile) \
--assert \
|| (cat $(ls *.diff.json) && false)
- name: reco-icetray logs
if: always()
run: |
sudo apt install tree
tree $SKYSCAN_DEBUG_DIR
find $SKYSCAN_DEBUG_DIR -type f -not -name "*.i3" -not -name "*.pkl" -exec "more" {} + | cat # recursively cats with filenames (delimited by :::::::)
- name: broker docker logs
if: always()
run: |
Expand Down

0 comments on commit 733b3e7

Please sign in to comment.