set echo flag for actions
This commit is contained in:
@@ -67,7 +67,14 @@ jobs:
|
||||
run: pixi run ccache -s
|
||||
|
||||
- name: Run C++ unit tests
|
||||
run: pixi run ctest --test-dir build/release --output-on-failure --timeout 120
|
||||
shell: bash
|
||||
run: |
|
||||
set -x
|
||||
pixi run ctest --test-dir build/release --output-on-failure --timeout 120 -V 2>&1 || {
|
||||
echo "=== Tests failed, showing last test log ==="
|
||||
cat build/release/Testing/Temporary/LastTest.log 2>/dev/null || true
|
||||
exit 1
|
||||
}
|
||||
|
||||
- name: Install
|
||||
run: pixi run install-release
|
||||
|
||||
Reference in New Issue
Block a user