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 @@ -181,7 +181,7 @@ jobs:
181
181
- name : Build Integration Test
182
182
env :
183
183
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
185
185
186
186
# Upload
187
187
- name : Extract Binaries
@@ -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
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