File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -181,7 +181,7 @@ jobs:
181181 - name : Build Integration Test
182182 env :
183183 CARGO_PROFILE_DEV_SPLIT_DEBUGINFO : off
184- run : cargo test --test integration --features integration --no-run
184+ run : cargo test --test integration --features integration --no-run --show-output
185185
186186 # Upload
187187 - name : Extract Binaries
@@ -232,6 +232,11 @@ jobs:
232232 - name : Install toolchain
233233 run : rustup show active-toolchain
234234
235+ - name : Set LD_LIBRARY_PATH
236+ run : |
237+ SYSROOT=$(rustc --print sysroot)
238+ echo "LD_LIBRARY_PATH=${SYSROOT}/lib${LD_LIBRARY_PATH+:${LD_LIBRARY_PATH}}" >> $GITHUB_ENV
239+
235240 # Download
236241 - name : Download target dir
237242 uses : actions/download-artifact@v3
Original file line number Diff line number Diff line change @@ -65,6 +65,10 @@ fn integration_test() {
6565 . expect ( "unable to run clippy" ) ;
6666
6767 let stderr = String :: from_utf8_lossy ( & output. stderr ) ;
68+
69+ // debug:
70+ eprintln ! ( "{stderr}" ) ;
71+
6872 if let Some ( backtrace_start) = stderr. find ( "error: internal compiler error" ) {
6973 static BACKTRACE_END_MSG : & str = "end of query stack" ;
7074 let backtrace_end = stderr[ backtrace_start..]
You can’t perform that action at this time.
0 commit comments