[INFO] updating cached repository https://github.com/keringar/path-tracer [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] 5be3c19a61d139d2da1c62105277cbb5d71eaacf [INFO] testing keringar/path-tracer against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fkeringar%2Fpath-tracer" "/workspace/builds/worker-0/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-0/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/keringar/path-tracer 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/keringar/path-tracer [INFO] finished tweaking git repo https://github.com/keringar/path-tracer [INFO] tweaked toml for git repo https://github.com/keringar/path-tracer written to /workspace/builds/worker-0/source/Cargo.toml [INFO] crate git repo https://github.com/keringar/path-tracer 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] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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] 56acf77588139223c458e4a9d9e21af66889400c43038e6a05cd2873d25c48f4 [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" "56acf77588139223c458e4a9d9e21af66889400c43038e6a05cd2873d25c48f4"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling num-traits v0.2.2 [INFO] [stderr] Compiling cc v1.0.9 [INFO] [stderr] Compiling bitflags v1.0.1 [INFO] [stderr] Compiling rustc-demangle v0.1.7 [INFO] [stderr] Compiling cgmath v0.16.1 [INFO] [stderr] Compiling approx v0.1.1 [INFO] [stderr] Compiling atty v0.2.8 [INFO] [stderr] Compiling inflate v0.3.4 [INFO] [stderr] Compiling textwrap v0.9.0 [INFO] [stderr] Compiling synstructure v0.6.1 [INFO] [stderr] Compiling clap v2.31.2 [INFO] [stderr] Compiling failure_derive v0.1.1 [INFO] [stderr] Compiling num-integer v0.1.36 [INFO] [stderr] Compiling num-traits v0.1.43 [INFO] [stderr] Compiling enum_primitive v0.1.1 [INFO] [stderr] Compiling num-iter v0.1.35 [INFO] [stderr] Compiling num-rational v0.1.42 [INFO] [stderr] Compiling backtrace-sys v0.1.16 [INFO] [stderr] Compiling png v0.11.0 [INFO] [stderr] Compiling image v0.18.0 [INFO] [stderr] Compiling backtrace v0.3.5 [INFO] [stderr] Compiling failure v0.1.1 [INFO] [stderr] Compiling ray-tracer v0.2.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused imports: `Rng`, `thread_rng` [INFO] [stderr] --> src/camera.rs:6:12 [INFO] [stderr] | [INFO] [stderr] 6 | use rand::{thread_rng, Rng}; [INFO] [stderr] | ^^^^^^^^^^ ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/hittable_list.rs:8:23 [INFO] [stderr] | [INFO] [stderr] 8 | hittable: Vec>, [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Hittable + Sync` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/hittable_list.rs:18:39 [INFO] [stderr] | [INFO] [stderr] 18 | pub fn insert(&mut self, obj: Box) { [INFO] [stderr] | ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Hittable + Sync` [INFO] [stderr] [INFO] [stderr] warning: unused import: `hit::Hittable` [INFO] [stderr] --> src/scene.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use hit::Hittable; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0061]: this function takes 3 arguments but 2 arguments were supplied [INFO] [stderr] --> src/main.rs:107:22 [INFO] [stderr] | [INFO] [stderr] 107 | let camera = camera::Camera::new(pixel_res_x, pixel_res_y); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ ----------- ----------- supplied 2 arguments [INFO] [stderr] | | [INFO] [stderr] | expected 3 arguments [INFO] [stderr] | [INFO] [stderr] ::: src/camera.rs:23:5 [INFO] [stderr] | [INFO] [stderr] 23 | pub fn new(res_x: u32, res_y: u32, focal_point: Vector3) -> Camera { [INFO] [stderr] | ----------------------------------------------------------------------- defined here [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 4 warnings emitted [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0061`. [INFO] [stderr] error: could not compile `ray-tracer`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "56acf77588139223c458e4a9d9e21af66889400c43038e6a05cd2873d25c48f4"` [INFO] running `"docker" "rm" "-f" "56acf77588139223c458e4a9d9e21af66889400c43038e6a05cd2873d25c48f4"` [INFO] [stdout] 56acf77588139223c458e4a9d9e21af66889400c43038e6a05cd2873d25c48f4