File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7373 run : |
7474 source ${{github.workspace}}/install-tfel/share/tfel/env/env.sh
7575 cmake --build ${{github.workspace}}/build --target check -j $(nproc)
76+
77+ - name : Print test log on failure
78+ if : failure()
79+ run : |
80+ cat ${{github.workspace}}/build/Testing/Temporary/LastTest.log
81+
82+ - name : Publish test report
83+ uses : mikepenz/action-junit-report@v6
84+ if : success() || failure() # always run even if the previous step fails
85+ with :
86+ report_paths : ' **/build/tests/*.xml'
Original file line number Diff line number Diff line change 6363 run : |
6464 source ${{github.workspace}}/install-tfel/share/tfel/env/env.sh
6565 cmake --build ${{github.workspace}}/build --target check -j $(nproc)
66+
67+ - name : Print test log on failure
68+ if : failure()
69+ run : |
70+ cat ${{github.workspace}}/build/Testing/Temporary/LastTest.log
71+
72+ - name : Publish Test Report
73+ uses : mikepenz/action-junit-report@v6
74+ if : success() || failure() # always run even if the previous step fails
75+ with :
76+ report_paths : ' **/build/tests/*.xml'
You can’t perform that action at this time.
0 commit comments