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 88adb24 commit e3b1afeCopy full SHA for e3b1afe
1 file changed
.github/workflows/ci.yml
@@ -58,7 +58,13 @@ jobs:
58
env:
59
# Since Rust 1.83, Valgrind reports some possible leaks that cargo-valgrind
60
# treats as fatal. The given suppressions file makes sure these are ignored.
61
- VALGRINDFLAGS: --suppressions=valgrind.supp
+ VALGRINDFLAGS: --suppressions=valgrind.supp --gen-suppressions=all --log-file=${{ runner.temp }}/valgrind.log
62
+ - name: Upload valgrind log
63
+ if: ${{ failure() }}
64
+ uses: actions/upload-artifact@v4
65
+ with:
66
+ name: valgrind logs
67
+ path: ${{ runner.temp }}/valgrind.log
68
- name: Ensure C headers are up to date
69
run: |
70
script/cbindgen
0 commit comments