Improved usage of tree command.

This commit is contained in:
Patrick Lehmann
2024-12-18 23:45:28 +01:00
parent c13dd2521c
commit e21f89670a
3 changed files with 6 additions and 9 deletions

View File

@@ -73,7 +73,7 @@ jobs:
- name: 🔎 Inspect extracted artifact (tarball)
run: |
tree -psh artifacts
tree -pash artifacts
- name: 🔧 Install pyEDAA.Reports (JUunit Parser and Merger)
run: |
@@ -82,9 +82,8 @@ jobs:
- name: Move JUnit files and collect them all to junit/
run: |
mkdir -p junit
ls -lAh artifacts/*/*.xml
find artifacts/ -type f -path "*TestReportSummary*.xml" -exec sh -c 'cp -v $0 "junit/$(basename $(dirname $0)).$(basename $0)"' {} ';'
tree -a junit
tree -pash junit
- name: 🔁 Merge JUnit Unit Test Summaries
run: |