This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -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
@@ -246,7 +251,7 @@ jobs:
246251 - name : Test ${{ matrix.integration }}
247252 run : |
248253 RUSTUP_TOOLCHAIN="$(rustup show active-toolchain | grep -o -E "nightly-[0-9]{4}-[0-9]{2}-[0-9]{2}")" \
249- $CARGO_TARGET_DIR/debug/integration
254+ $CARGO_TARGET_DIR/debug/integration --show-output
250255 env :
251256 INTEGRATION : ${{ matrix.integration }}
252257
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