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 e1b3325 commit e51b4e2Copy full SHA for e51b4e2
1 file changed
.github/workflows/ci.yml
@@ -923,3 +923,11 @@ jobs:
923
export CARGO_BUILD_JOBS=1
924
export RUST_BACKTRACE=full
925
nix flake check -L --show-trace --print-build-logs
926
+ - name: Dump jemalloc configure log (on failure)
927
+ if: ${{ failure() }}
928
+ shell: bash
929
+ run: |
930
+ set -euxo pipefail
931
+ # Find any jemalloc config.log produced in the workspace build dir
932
+ find /build/source -path '*tikv-jemalloc-sys*' -name config.log -print -exec tail -n 300 {} \; || true
933
+
0 commit comments