[INFO] updating cached repository https://github.com/bootandy/ray [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/mnt/big/crater/work/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] 3eaf5d8986b8263964205e041cf5d8f2f6f76bc6 [INFO] checking bootandy/ray against master#c9edc02e8320a9e5799d185910ece7d491f524e6 for pr-64398 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fbootandy%2Fray" "work/builds/worker-2/source"` [INFO] [stderr] Cloning into 'work/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/bootandy/ray on toolchain c9edc02e8320a9e5799d185910ece7d491f524e6-alt [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+c9edc02e8320a9e5799d185910ece7d491f524e6-alt" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/bootandy/ray [INFO] finished tweaking git repo https://github.com/bootandy/ray [INFO] tweaked toml for git repo https://github.com/bootandy/ray written to work/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/bootandy/ray already has a lockfile, it will not be regenerated [INFO] running `"/mnt/big/crater/work/cargo-home/bin/cargo" "+c9edc02e8320a9e5799d185910ece7d491f524e6-alt" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/mnt/big/crater/work/builds/worker-2/source:/opt/rustwide/workdir:ro,Z" "-v" "/mnt/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-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" "+c9edc02e8320a9e5799d185910ece7d491f524e6-alt" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] 19ed5f1c6825c7951d44831c81fc5213b263fb81f1f384e4ef1614a4ee6c0e78 [INFO] running `"docker" "start" "-a" "19ed5f1c6825c7951d44831c81fc5213b263fb81f1f384e4ef1614a4ee6c0e78"` [INFO] [stderr] Checking itertools v0.7.9 [INFO] [stderr] Compiling num-derive v0.2.3 [INFO] [stderr] Checking tiff v0.2.1 [INFO] [stderr] Checking image v0.20.1 [INFO] [stderr] Checking ray v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: unused import: `PURE_COLOR` [INFO] [stderr] --> src/data/textures.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use PURE_COLOR; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `PURE_COLOR` [INFO] [stderr] --> src/data/textures.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use PURE_COLOR; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variable does not need to be mutable [INFO] [stderr] --> src/main.rs:84:13 [INFO] [stderr] | [INFO] [stderr] 84 | let mut b = a.bounding_box(); [INFO] [stderr] | ----^ [INFO] [stderr] | | [INFO] [stderr] | help: remove this `mut` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_mut)]` on by default [INFO] [stderr] [INFO] [stderr] warning: static variable `permx` should have an upper case name [INFO] [stderr] --> src/data/textures.rs:38:16 [INFO] [stderr] | [INFO] [stderr] 38 | static ref permx: [u8; 256] = build_static_perm(); [INFO] [stderr] | ^^^^^ help: convert the identifier to upper case: `PERMX` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_upper_case_globals)]` on by default [INFO] [stderr] [INFO] [stderr] warning: static variable `permy` should have an upper case name [INFO] [stderr] --> src/data/textures.rs:39:16 [INFO] [stderr] | [INFO] [stderr] 39 | static ref permy: [u8; 256] = build_static_perm(); [INFO] [stderr] | ^^^^^ help: convert the identifier to upper case: `PERMY` [INFO] [stderr] [INFO] [stderr] warning: static variable `permz` should have an upper case name [INFO] [stderr] --> src/data/textures.rs:40:16 [INFO] [stderr] | [INFO] [stderr] 40 | static ref permz: [u8; 256] = build_static_perm(); [INFO] [stderr] | ^^^^^ help: convert the identifier to upper case: `PERMZ` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/data/textures.rs:209:32 [INFO] [stderr] | [INFO] [stderr] 209 | let n = NoiseTexture { ran_float }; [INFO] [stderr] | ^^^^^^^^^ expected struct `data::vec3::Point`, found u8 [INFO] [stderr] | [INFO] [stderr] = note: expected type `[data::vec3::Point; 256]` [INFO] [stderr] found type `[u8; 256]` [INFO] [stderr] [INFO] [stderr] error[E0063]: missing field `scale` in initializer of `data::textures::NoiseTexture` [INFO] [stderr] --> src/data/textures.rs:209:17 [INFO] [stderr] | [INFO] [stderr] 209 | let n = NoiseTexture { ran_float }; [INFO] [stderr] | ^^^^^^^^^^^^ missing `scale` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0063, E0308. [INFO] [stderr] For more information about an error, try `rustc --explain E0063`. [INFO] [stderr] error: Could not compile `ray`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "19ed5f1c6825c7951d44831c81fc5213b263fb81f1f384e4ef1614a4ee6c0e78"` [INFO] running `"docker" "rm" "-f" "19ed5f1c6825c7951d44831c81fc5213b263fb81f1f384e4ef1614a4ee6c0e78"` [INFO] [stdout] 19ed5f1c6825c7951d44831c81fc5213b263fb81f1f384e4ef1614a4ee6c0e78