File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -232,6 +232,11 @@ jobs:
232
232
- name : Install toolchain
233
233
run : rustup show active-toolchain
234
234
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
+
235
240
# Download
236
241
- name : Download target dir
237
242
uses : actions/download-artifact@v3
@@ -246,7 +251,7 @@ jobs:
246
251
- name : Test ${{ matrix.integration }}
247
252
run : |
248
253
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
250
255
env :
251
256
INTEGRATION : ${{ matrix.integration }}
252
257
Original file line number Diff line number Diff line change @@ -65,6 +65,10 @@ fn integration_test() {
65
65
. expect ( "unable to run clippy" ) ;
66
66
67
67
let stderr = String :: from_utf8_lossy ( & output. stderr ) ;
68
+
69
+ // debug:
70
+ eprintln ! ( "{stderr}" ) ;
71
+
68
72
if let Some ( backtrace_start) = stderr. find ( "error: internal compiler error" ) {
69
73
static BACKTRACE_END_MSG : & str = "end of query stack" ;
70
74
let backtrace_end = stderr[ backtrace_start..]
You can’t perform that action at this time.
0 commit comments