This repository has been archived by the owner on Jun 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 74
All rust versions on playpen are at least one release behind. #215
Comments
Logs indicate that we can't
No idea why :( |
It works on my local system, so the server might just be missing a little
|
The nightly is one month old now. |
By the way, a better script to find the rust version used on playpen, which works on stable and beta as well, is: use std::process::Command;
use std::str;
fn main() {
println!("{}", str::from_utf8(&Command::new("rustc").arg("-v").arg("-V").output().unwrap().stdout).unwrap());
} At this point it is probably important to note that not only is nightly outdated on playpen, but that stable and beta are also one version behind. |
TimNN
changed the title
Nightly is (very) outdated (2016-05-18)
All rust versions on playpen are at least one release behind.
Jun 20, 2016
Ok, as @eddyb pointed out I've disabled rustfmt to at least get these updated for now. Hopefully we can invest in a better solution soon. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Playpen currently runs
Stable:
rustc 1.8.0 (db2939409 2016-04-11)
Beta:
rustc 1.9.0-beta.3 (e4e8b6668 2016-05-18)
Nightly:
rustc 1.10.0-nightly (9c6904ca1 2016-05-18)
As of today (2016-06-20), the latest versions are:
Stable:
rustc 1.9.0 (e4e8b6668 2016-05-18)
Beta:
rustc 1.10.0-beta.2 (39f3c16cc 2016-05-26)
Nightly:
rustc 1.11.0-nightly (bb4a79b08 2016-06-15)
Original post:
Try running (playpen):
This prints:
Some("2016-05-18")
The text was updated successfully, but these errors were encountered: