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 b2572ae commit 9cbfed4Copy full SHA for 9cbfed4
.github/workflows/build.yml
@@ -226,4 +226,8 @@ jobs:
226
echo "LLVM_CONFIG_PATH=${{ runner.temp }}/llvm-${{ env.clang }}/bin/llvm-config" >> $GITHUB_ENV
227
228
- name: Test with embed feature
229
- run: cargo test --workspace --release --features closure,embed,anyhow --no-fail-fast
+ run: |
230
+ sudo sysctl -w kernel.core_pattern='core.%e.%p'
231
+ ulimit -c unlimited
232
+ cargo test --workspace --release --features closure,embed,anyhow --no-fail-fast || \
233
+ (for core in core.*; do [ -f "$core" ] && gdb -batch -ex "thread apply all bt" target/release/deps/sapi_tests-* "$core"; done; exit 1)
0 commit comments