[INFO] updating cached repository https://github.com/mchesser/snake-rs [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] 53f12862dcf73d41bb50ffa24aebeceb979f2390 [INFO] testing mchesser/snake-rs against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fmchesser%2Fsnake-rs" "/workspace/builds/worker-11/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-11/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/mchesser/snake-rs on toolchain 1.44.0 [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/mchesser/snake-rs [INFO] finished tweaking git repo https://github.com/mchesser/snake-rs [INFO] tweaked toml for git repo https://github.com/mchesser/snake-rs written to /workspace/builds/worker-11/source/Cargo.toml [INFO] crate git repo https://github.com/mchesser/snake-rs already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] error: the lock file /workspace/builds/worker-11/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" "+1.44.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] [stderr] Updating git repository `https://github.com/quvarxa/basic2d` [INFO] [stderr] Updating git repository `https://github.com/AngryLawyer/rust-sdl2` [INFO] [stderr] Updating git repository `https://github.com/quvarxa/interpolate` [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-11/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" "+1.44.0" "build" "--frozen"` [INFO] [stdout] 8879581e0b43bd1d0797224735118bec40414e32c35d2debc4d99b444d608d61 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `"docker" "start" "-a" "8879581e0b43bd1d0797224735118bec40414e32c35d2debc4d99b444d608d61"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling sdl2 v0.34.1 (https://github.com/AngryLawyer/rust-sdl2#755f163e) [INFO] [stderr] Compiling interpolate v0.1.0 (https://github.com/quvarxa/interpolate#f6208548) [INFO] [stderr] Compiling sdl2-sys v0.34.0 (https://github.com/AngryLawyer/rust-sdl2#755f163e) [INFO] [stderr] Compiling basic2d v0.0.2 (https://github.com/quvarxa/basic2d#3c8d23f3) [INFO] [stderr] Compiling snake v0.0.1 (/opt/rustwide/workdir) [INFO] [stderr] error[E0412]: cannot find type `Renderer` in module `render` [INFO] [stderr] --> src/game.rs:37:51 [INFO] [stderr] | [INFO] [stderr] 37 | pub fn draw(&mut self, renderer: &mut render::Renderer) { [INFO] [stderr] | ^^^^^^^^ not found in `render` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/client.rs:21:23 [INFO] [stderr] | [INFO] [stderr] 21 | let sdl_context = try!(sdl2::init()); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/client.rs:23:18 [INFO] [stderr] | [INFO] [stderr] 23 | let window = try!(sdl_context.video()) [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/client.rs:33:22 [INFO] [stderr] | [INFO] [stderr] 33 | let mut events = try!(sdl_context.event_pump()); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] error[E0599]: no method named `renderer` found for struct `sdl2::video::Window` in the current scope [INFO] [stderr] --> src/client.rs:26:31 [INFO] [stderr] | [INFO] [stderr] 26 | let mut renderer = window.renderer().build().unwrap(); [INFO] [stderr] | ^^^^^^^^ method not found in `sdl2::video::Window` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors; 3 warnings emitted [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0412, E0599. [INFO] [stderr] For more information about an error, try `rustc --explain E0412`. [INFO] [stderr] error: could not compile `snake`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "8879581e0b43bd1d0797224735118bec40414e32c35d2debc4d99b444d608d61"` [INFO] running `"docker" "rm" "-f" "8879581e0b43bd1d0797224735118bec40414e32c35d2debc4d99b444d608d61"` [INFO] [stdout] 8879581e0b43bd1d0797224735118bec40414e32c35d2debc4d99b444d608d61