We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3079a9 commit b84fb9bCopy full SHA for b84fb9b
.github/workflows/clippy_bors.yml
@@ -30,6 +30,11 @@ jobs:
30
with:
31
ref: ${{ github.ref }}
32
33
+ - name: Set LD_LIBRARY_PATH
34
+ run: |
35
+ SYSROOT=$(rustc --print sysroot)
36
+ echo "LD_LIBRARY_PATH=${SYSROOT}/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}" >> $GITHUB_ENV
37
+
38
# Run
39
- name: Check Changelog
40
run: |
tests/integration.rs
@@ -65,6 +65,10 @@ fn integration_test() {
65
.expect("unable to run clippy");
66
67
let stderr = String::from_utf8_lossy(&output.stderr);
68
69
+ // debug:
70
+ eprintln!("{stderr}");
71
72
if let Some(backtrace_start) = stderr.find("error: internal compiler error") {
73
static BACKTRACE_END_MSG: &str = "end of query stack";
74
let backtrace_end = stderr[backtrace_start..]
0 commit comments