File tree 2 files changed +9
-13
lines changed
2 files changed +9
-13
lines changed Original file line number Diff line number Diff line change @@ -187,16 +187,14 @@ jobs:
187
187
- name : Extract Binaries
188
188
run : |
189
189
DIR=$CARGO_TARGET_DIR/debug
190
- rm $DIR/deps/integration-*.d
191
- mv $DIR/deps/integration-* $DIR/integration
190
+ find $DIR/deps/integration-* -executable ! -type d | xargs -I {} mv {} $DIR/integration
192
191
find $DIR ! -executable -o -type d ! -path $DIR | xargs rm -rf
193
- rm -rf $CARGO_TARGET_DIR/release
194
192
195
193
- name : Upload Binaries
196
- uses : actions/upload-artifact@v1
194
+ uses : actions/upload-artifact@v3
197
195
with :
198
- name : target
199
- path : target
196
+ name : binaries
197
+ path : target/debug
200
198
201
199
integration :
202
200
needs : integration_build
@@ -206,16 +204,13 @@ jobs:
206
204
matrix :
207
205
integration :
208
206
- ' rust-lang/cargo'
209
- # FIXME: re-enable once fmt_macros is renamed in RLS
210
- # - 'rust-lang/rls'
211
207
- ' rust-lang/chalk'
212
208
- ' rust-lang/rustfmt'
213
209
- ' Marwes/combine'
214
210
- ' Geal/nom'
215
211
- ' rust-lang/stdarch'
216
212
- ' serde-rs/serde'
217
- # FIXME: chrono currently cannot be compiled with `--all-targets`
218
- # - 'chronotope/chrono'
213
+ - ' chronotope/chrono'
219
214
- ' hyperium/hyper'
220
215
- ' rust-random/rand'
221
216
- ' rust-lang/futures-rs'
@@ -239,10 +234,10 @@ jobs:
239
234
240
235
# Download
241
236
- name : Download target dir
242
- uses : actions/download-artifact@v1
237
+ uses : actions/download-artifact@v3
243
238
with :
244
- name : target
245
- path : target
239
+ name : binaries
240
+ path : target/debug
246
241
247
242
- name : Make Binaries Executable
248
243
run : chmod +x $CARGO_TARGET_DIR/debug/*
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ fn integration_test() {
65
65
. expect ( "unable to run clippy" ) ;
66
66
67
67
let stderr = String :: from_utf8_lossy ( & output. stderr ) ;
68
+ dbg ! ( & stderr) ;
68
69
if let Some ( backtrace_start) = stderr. find ( "error: internal compiler error" ) {
69
70
static BACKTRACE_END_MSG : & str = "end of query stack" ;
70
71
let backtrace_end = stderr[ backtrace_start..]
You can’t perform that action at this time.
0 commit comments