We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47a479a commit b62f3a9Copy full SHA for b62f3a9
1 file changed
.github/workflows/gcc8_test.yaml
@@ -45,6 +45,16 @@ jobs:
45
curl -L -O https://github.com/Kitware/CMake/releases/download/v3.28.3/cmake-3.28.3-linux-x86_64.tar.gz
46
tar -zxvf cmake-3.28.3-linux-x86_64.tar.gz -C /usr/local --strip-components=1
47
rm cmake-3.28.3-linux-x86_64.tar.gz
48
+ - name: Enable core dumps
49
+ run: |
50
+ ulimit -c unlimited
51
+ echo "kernel.core_pattern=core.%e.%p" | sudo tee -a /etc/sysctl.conf
52
+ sysctl -p
53
+ - name: Debug core dump settings
54
55
+ ulimit -c
56
+ cat /proc/sys/kernel/core_pattern
57
+ ls -la
58
- name: Checkout paimon-cpp
59
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
60
with:
0 commit comments