We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 046217b commit 7b7c124Copy full SHA for 7b7c124
2 files changed
.github/actions/setup-linux/action.yml
@@ -27,7 +27,7 @@ runs:
27
echo "::group::Install common dependencies"
28
sudo apt-get update
29
sudo apt-get install -y --no-install-recommends \
30
- zip \
+ gdb zip \
31
libblas-dev liblapack-dev liblapacke-dev \
32
openmpi-bin openmpi-common libopenmpi-dev
33
echo "::endgroup::"
.github/actions/test-linux/action.yml
@@ -67,3 +67,15 @@ runs:
67
echo "::group::CPP tests - GPU"
68
./build/tests/tests -sfe="*linalg_tests.cpp"
69
70
+
71
+ - name: Show stack trace on crash
72
+ if: failure()
73
+ shell: bash
74
+ run: |
75
+ echo "::group::Show stack trace on crash"
76
+ set +e
77
+ sleep 10
78
+ if coredumpctl list; then
79
+ coredumpctl debug --debugger-arguments="-batch -ex 'thread apply all bt'"
80
+ fi
81
+ echo "::endgroup::"
0 commit comments