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 ee97431 commit ae68073Copy full SHA for ae68073
.github/workflows/main.yml
@@ -54,7 +54,21 @@ jobs:
54
sudo apt install -y musl-tools
55
fi
56
- name: test
57
- run: sh ci/run.sh
+ run: |
58
+ if [[ "$TARGET" == "x86_64-unknown-linux-musl" ]]; then
59
+ ulimit -c unlimited
60
+ echo "$PWD/core-dump/corefile-%e-%p-%t" | sudo tee /proc/sys/kernel/core_pattern
61
+ mkdir core-dump
62
+ fi
63
+ sh ci/run.sh
64
+ - name: upload coredump
65
+ uses: actions/upload-artifact@v2
66
+ if: ${{ failure() }}
67
+ with:
68
+ name: coredump
69
+ path: |
70
+ ./target/x86_64-unknown-linux-musl/debug/deps/tikv_jemalloc_sys-*
71
+ ./core-dump/*
72
test_bench:
73
name: Benchmarks using x86_64-unknown-linux-gnu (nightly)
74
runs-on: ubuntu-latest
0 commit comments