-
-
Notifications
You must be signed in to change notification settings - Fork 75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CI: armv7-unknown-linux-musleabihf
cross
test fails with Rust 1.84.0
#487
Comments
I can reproduce the failure on my Mac with
Environment:
|
This seems to be an incorrect compilation by Rust 1.84.0 for the
diff --git a/src/common/time/clock.rs b/src/common/time/clock.rs
index 2032f91..c63a3eb 100644
--- a/src/common/time/clock.rs
+++ b/src/common/time/clock.rs
@@ -126,7 +126,7 @@ impl Clock {
#[cfg(test)]
ClockType::Mocked { mock } => {
let duration = Duration::from_nanos(instant.as_nanos());
- mock.origin + duration
+ dbg!(mock.origin + duration)
}
}
} |
tatsuya6502
added a commit
that referenced
this issue
Jan 12, 2025
Rust 1.84.0 to compile for Linux ARMv7 target Ref #487
Dependency versions: Cargo.lock.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The Linux cross-compiling test for the
armv7-unknown-linux-musleabihf
target has been failing since the release of Rust 1.84.0. It consistently fails on a specific test:future::base_cache::tests::test_per_entry_expiration
. The same test for thesync
cache succeeds.https://github.com/moka-rs/moka/actions/runs/12717383830/job/35456822039
The text was updated successfully, but these errors were encountered: