[INFO] updating cached repository https://github.com/archer884/roll [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 6c953637842b9b03a7e0568a4bfdb169c473fd62 [INFO] testing archer884/roll against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Farcher884%2Froll" "/workspace/builds/worker-7/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-7/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/archer884/roll on toolchain beta-2020-06-03 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/archer884/roll [INFO] finished tweaking git repo https://github.com/archer884/roll [INFO] tweaked toml for git repo https://github.com/archer884/roll written to /workspace/builds/worker-7/source/Cargo.toml [INFO] crate git repo https://github.com/archer884/roll already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] error: the lock file /workspace/builds/worker-7/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] [stderr] If you want to try to generate the lock file without accessing the network, use the --offline flag. [INFO] the lockfile is outdated, regenerating it [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] [stderr] Updating git repository `https://github.com/archer884/dice.git` [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2020-06-03" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 45c728c2e670da4f74fca4e10950fa1a2954c624a356664d8abe7868e962b986 [INFO] running `"docker" "start" "-a" "45c728c2e670da4f74fca4e10950fa1a2954c624a356664d8abe7868e962b986"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling version_check v0.9.2 [INFO] [stderr] Compiling libc v0.2.71 [INFO] [stderr] Compiling proc-macro2 v1.0.18 [INFO] [stderr] Compiling getrandom v0.1.14 [INFO] [stderr] Compiling unicode-xid v0.2.0 [INFO] [stderr] Compiling cfg-if v0.1.10 [INFO] [stderr] Compiling memchr v2.3.3 [INFO] [stderr] Compiling syn v1.0.30 [INFO] [stderr] Compiling proc-macro-hack v0.5.16 [INFO] [stderr] Compiling ppv-lite86 v0.2.8 [INFO] [stderr] Compiling lazy_static v1.4.0 [INFO] [stderr] Compiling regex-syntax v0.6.18 [INFO] [stderr] Compiling unicode-width v0.1.7 [INFO] [stderr] Compiling rustc-serialize v0.3.24 [INFO] [stderr] Compiling getopts v0.2.21 [INFO] [stderr] Compiling thread_local v1.0.1 [INFO] [stderr] Compiling standback v0.2.9 [INFO] [stderr] Compiling time v0.2.16 [INFO] [stderr] Compiling aho-corasick v0.7.10 [INFO] [stderr] Compiling quote v1.0.6 [INFO] [stderr] Compiling rand_core v0.5.1 [INFO] [stderr] Compiling rand_chacha v0.2.2 [INFO] [stderr] Compiling rand v0.7.3 [INFO] [stderr] Compiling regex v1.3.9 [INFO] [stderr] Compiling dice v2.0.0 (https://github.com/archer884/dice.git#b514103f) [INFO] [stderr] Compiling time-macros-impl v0.1.1 [INFO] [stderr] Compiling time-macros v0.1.0 [INFO] [stderr] Compiling roll v1.8.2 (/opt/rustwide/workdir) [INFO] [stderr] error[E0432]: unresolved import `rand::OsRng` [INFO] [stderr] --> src/app.rs:20:5 [INFO] [stderr] | [INFO] [stderr] 20 | use rand::OsRng; [INFO] [stderr] | ^^^^^^^^^^^ no `OsRng` in the root [INFO] [stderr] [INFO] [stderr] error[E0407]: method `next_u32` is not a member of trait `Rng` [INFO] [stderr] --> src/rng_provider.rs:11:5 [INFO] [stderr] | [INFO] [stderr] 11 | / fn next_u32(&mut self) -> u32 { [INFO] [stderr] 12 | | match self { [INFO] [stderr] 13 | | &mut RngSource::Primary(ref mut source) => source.next_u32(), [INFO] [stderr] 14 | | &mut RngSource::Fallback(ref mut source) => source.next_u32(), [INFO] [stderr] 15 | | } [INFO] [stderr] 16 | | } [INFO] [stderr] | |_____^ not a member of trait `Rng` [INFO] [stderr] [INFO] [stderr] error[E0405]: cannot find trait `Zero` in module `num` [INFO] [stderr] --> src/result.rs:6:55 [INFO] [stderr] | [INFO] [stderr] 6 | type Value: ops::Add + num::Zero; [INFO] [stderr] | ^^^^ not found in `num` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `now` in crate `time` [INFO] [stderr] --> src/app.rs:96:22 [INFO] [stderr] | [INFO] [stderr] 96 | let date = time::now(); [INFO] [stderr] | ^^^ not found in `time` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `strftime` in crate `time` [INFO] [stderr] --> src/app.rs:97:39 [INFO] [stderr] | [INFO] [stderr] 97 | path.push(format!("{}.log", time::strftime("%Y%m%d", &date).unwrap_or("rolls".to_owned()))); [INFO] [stderr] | ^^^^^^^^ not found in `time` [INFO] [stderr] [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> src/app.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(iter_arith, zero_one)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::env::home_dir': This function's behavior is unexpected and probably not what you want. Consider using a crate from crates.io instead. [INFO] [stderr] --> src/config.rs:48:19 [INFO] [stderr] | [INFO] [stderr] 48 | let mut buf = ::std::env::home_dir().unwrap(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] error: aborting due to 6 previous errors; 1 warning emitted [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0405, E0407, E0425, E0432, E0554. [INFO] [stderr] For more information about an error, try `rustc --explain E0405`. [INFO] [stderr] error: could not compile `roll`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "45c728c2e670da4f74fca4e10950fa1a2954c624a356664d8abe7868e962b986"` [INFO] running `"docker" "rm" "-f" "45c728c2e670da4f74fca4e10950fa1a2954c624a356664d8abe7868e962b986"` [INFO] [stdout] 45c728c2e670da4f74fca4e10950fa1a2954c624a356664d8abe7868e962b986