Skip to content

fix(dashboard): 🐛 Fix SteamVR launch fail for dangling ADB process #4953

fix(dashboard): 🐛 Fix SteamVR launch fail for dangling ADB process

fix(dashboard): 🐛 Fix SteamVR launch fail for dangling ADB process #4953

Triggered via pull request March 15, 2025 18:52
Status Failure
Total duration 7m 43s
Artifacts

rust.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

9 errors
check-macos
Process completed with exit code 101.
check-linux-old
Process completed with exit code 101.
check-linux-old: alvr/adb/src/commands.rs#L157
error[E0507]: cannot move out of `layout.executables_dir` which is behind a shared reference --> alvr/adb/src/commands.rs:157:43 | 157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir)?; | ^^^^^^^^^^^^^^^^^^^^^^ move occurs because `layout.executables_dir` has type `std::path::PathBuf`, which does not implement the `Copy` trait | help: consider cloning the value if the performance cost is acceptable | 157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir.clone())?; | ++++++++
check-linux-latest
Process completed with exit code 101.
check-linux-latest: alvr/adb/src/commands.rs#L157
error[E0507]: cannot move out of `layout.executables_dir` which is behind a shared reference --> alvr/adb/src/commands.rs:157:43 | 157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir)?; | ^^^^^^^^^^^^^^^^^^^^^^ move occurs because `layout.executables_dir` has type `std::path::PathBuf`, which does not implement the `Copy` trait | help: consider cloning the value if the performance cost is acceptable | 157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir.clone())?; | ++++++++
check-msrv-linux
Process completed with exit code 101.
check-windows
Process completed with exit code 1.
check-windows: alvr/adb/src/commands.rs#L157
error[E0507]: cannot move out of `layout.executables_dir` which is behind a shared reference --> alvr\adb\src\commands.rs:157:43 | 157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir)?; | ^^^^^^^^^^^^^^^^^^^^^^ move occurs because `layout.executables_dir` has type `std::path::PathBuf`, which does not implement the `Copy` trait | help: consider cloning the value if the performance cost is acceptable | 157 | ZipArchive::new(&mut reader)?.extract(layout.executables_dir.clone())?; | ++++++++
check-msrv-windows
Process completed with exit code 1.