File tree 2 files changed +1
-23
lines changed
2 files changed +1
-23
lines changed Original file line number Diff line number Diff line change 18
18
rust :
19
19
- nightly
20
20
# Check a ~3 months old nightly as "oldest supported version"
21
- - nightly-2023-10 -01
21
+ - nightly-2024-01 -01
22
22
# We want to run all of the above on Linux, macOS, windows-msvc, windows-gnu.
23
23
# The semantics of combining `include` with other things in GHA are very strange
24
24
# so this seems like the best way of doing that.
Original file line number Diff line number Diff line change @@ -553,28 +553,6 @@ panic = 'unwind'
553
553
fs:: copy ( & entry, staging_lib_dir. join ( entry. file_name ( ) . unwrap ( ) ) )
554
554
. context ( "failed to copy cargo out file" ) ?;
555
555
}
556
- // If we are doing a full build, copy any other files and directories that need copying from
557
- // the original sysroot.
558
- if matches ! ( self . mode, BuildMode :: Build ) {
559
- let extra_copy_paths = & [ "bin" ] ;
560
- let dist_sysroot_target_dir = dist_sysroot ( ) ?
561
- . join ( "lib" )
562
- . join ( "rustlib" )
563
- . join ( & target_name) ;
564
- for path in extra_copy_paths {
565
- let src = dist_sysroot_target_dir. join ( path) ;
566
- if src. exists ( ) {
567
- let dst = staging_dir. path ( ) . join ( path) ;
568
- symlink_or_copy_dir ( & src, & dst) . with_context ( || {
569
- format ! (
570
- "failed to symlink/copy `{src}` to `{dst}`" ,
571
- src = src. display( ) ,
572
- dst = dst. display( ) ,
573
- )
574
- } ) ?;
575
- }
576
- }
577
- }
578
556
579
557
// Write the hash file (into the staging dir).
580
558
fs:: write (
You can’t perform that action at this time.
0 commit comments