[INFO] updating cached repository https://github.com/rchaser53/rust_pack_man [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] cade69f34e8d64dac60a763eb3f37841bda743b4 [INFO] testing rchaser53/rust_pack_man against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Frchaser53%2Frust_pack_man" "/workspace/builds/worker-8/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-8/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/rchaser53/rust_pack_man 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/rchaser53/rust_pack_man [INFO] finished tweaking git repo https://github.com/rchaser53/rust_pack_man [INFO] tweaked toml for git repo https://github.com/rchaser53/rust_pack_man written to /workspace/builds/worker-8/source/Cargo.toml [INFO] crate git repo https://github.com/rchaser53/rust_pack_man 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] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-8/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] afa93f3583c9e6855966ed0277ef29e954af58e664ec8b1017d24a4e20a0c269 [INFO] running `"docker" "start" "-a" "afa93f3583c9e6855966ed0277ef29e954af58e664ec8b1017d24a4e20a0c269"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling c_vec v1.3.0 [INFO] [stderr] Compiling rand v0.3.17 [INFO] [stderr] Compiling memchr v1.0.2 [INFO] [stderr] Compiling sdl2-sys v0.31.0 [INFO] [stderr] Compiling num-complex v0.1.40 [INFO] [stderr] Compiling enum_primitive v0.1.1 [INFO] [stderr] Compiling aho-corasick v0.6.3 [INFO] [stderr] Compiling regex v0.2.2 [INFO] [stderr] Compiling num-bigint v0.1.40 [INFO] [stderr] Compiling num-rational v0.1.39 [INFO] [stderr] Compiling env_logger v0.4.3 [INFO] [stderr] Compiling num v0.1.40 [INFO] [stderr] Compiling sdl2 v0.31.0 [INFO] [stderr] Compiling rust_pack_man v0.1.1 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error_handling.rs:29:32 [INFO] [stderr] | [INFO] [stderr] 29 | fn cause(&self) -> Option<&Error> { None } [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn Error` [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/error_handling.rs:35:32 [INFO] [stderr] | [INFO] [stderr] 35 | fn cause(&self) -> Option<&Error>; [INFO] [stderr] | ^^^^^ help: use `dyn`: `dyn Error` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/game_field/field_row.rs:37:100 [INFO] [stderr] | [INFO] [stderr] 37 | pub fn get_cell_data(character: char, row_index: usize, cell_index: usize) -> (CellStatus, Box) { [INFO] [stderr] | ^^^^^^^^^^ help: use `dyn`: `dyn DrawMyself` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/game_field/field_cell.rs:9:22 [INFO] [stderr] | [INFO] [stderr] 9 | pub feature: Box [INFO] [stderr] | ^^^^^^^^^^ help: use `dyn`: `dyn DrawMyself` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/game_field/field_cell.rs:13:49 [INFO] [stderr] | [INFO] [stderr] 13 | pub fn new(status: CellStatus, feature: Box) -> FieldCell { [INFO] [stderr] | ^^^^^^^^^^ help: use `dyn`: `dyn DrawMyself` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/enemy/enemy.rs:14:20 [INFO] [stderr] | [INFO] [stderr] 14 | pub feature: Box [INFO] [stderr] | ^^^^^^^^^^^ help: use `dyn`: `dyn EnemyAction` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/enemy/enemy.rs:18:48 [INFO] [stderr] | [INFO] [stderr] 18 | pub fn new(status: EnemyStatus, feature: Box) -> Enemy { [INFO] [stderr] | ^^^^^^^^^^^ help: use `dyn`: `dyn EnemyAction` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/constants.rs:6:1 [INFO] [stderr] | [INFO] [stderr] 6 | / lazy_static! { [INFO] [stderr] 7 | | pub static ref FILE_PATHS: HashMap<&'static str, &'static str> = { [INFO] [stderr] 8 | | let mut map = HashMap::new(); [INFO] [stderr] 9 | | map.insert("HIT_EFFECT_PATH", "assets/musics/sine.wav"); [INFO] [stderr] ... | [INFO] [stderr] 17 | | }; [INFO] [stderr] 18 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/constants.rs:6:1 [INFO] [stderr] | [INFO] [stderr] 6 | / lazy_static! { [INFO] [stderr] 7 | | pub static ref FILE_PATHS: HashMap<&'static str, &'static str> = { [INFO] [stderr] 8 | | let mut map = HashMap::new(); [INFO] [stderr] 9 | | map.insert("HIT_EFFECT_PATH", "assets/musics/sine.wav"); [INFO] [stderr] ... | [INFO] [stderr] 17 | | }; [INFO] [stderr] 18 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy/field_getter.rs:26:35 [INFO] [stderr] | [INFO] [stderr] 26 | for seed_index in seed_indexs.into_iter() { [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(array_into_iter)]` on by default [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] warning: this method call currently resolves to `<&[T; N] as IntoIterator>::into_iter` (due to autoref coercions), but that might change in the future when `IntoIterator` impls for arrays are added. [INFO] [stderr] --> src/enemy/field_getter.rs:49:35 [INFO] [stderr] | [INFO] [stderr] 49 | for seed_index in seed_indexs.into_iter() { [INFO] [stderr] | ^^^^^^^^^ help: use `.iter()` instead of `.into_iter()` to avoid ambiguity: `iter` [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #66145 [INFO] [stderr] [INFO] [stderr] error: linking with `cc` failed: exit code: 1 [INFO] [stderr] | [INFO] [stderr] = note: "cc" "-Wl,--as-needed" "-Wl,-z,noexecstack" "-m64" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.rust_pack_man.bd5pp60u-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04" "/opt/rustwide/target/debug/deps/rust_pack_man-a33182a8fb711a04.15vtbpx34b4qto5d.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libsdl2-0635c11b0497a295.rlib" "/opt/rustwide/target/debug/deps/libc_vec-e5e54f6054504b47.rlib" "/opt/rustwide/target/debug/deps/libsdl2_sys-35a4ada57ff07c9a.rlib" "/opt/rustwide/target/debug/deps/libbitflags-2106c394414ab29b.rlib" "/opt/rustwide/target/debug/deps/libnum-6fdebc3f92c1724d.rlib" "/opt/rustwide/target/debug/deps/libnum_rational-92887f2a12994aae.rlib" "/opt/rustwide/target/debug/deps/libnum_bigint-034e286108806a97.rlib" "/opt/rustwide/target/debug/deps/librand-e5709852facbd3c2.rlib" "/opt/rustwide/target/debug/deps/liblibc-038630bf668737d2.rlib" "/opt/rustwide/target/debug/deps/libnum_complex-096eaecfd6ea643e.rlib" "/opt/rustwide/target/debug/deps/librustc_serialize-4acdc232161029de.rlib" "/opt/rustwide/target/debug/deps/libnum_iter-f9783eddec33d0c6.rlib" "/opt/rustwide/target/debug/deps/libnum_integer-f764f5b74564f412.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-120650fcfaedde43.rlib" "/opt/rustwide/target/debug/deps/libenum_primitive-0fdc0bdd3ecce7bb.rlib" "/opt/rustwide/target/debug/deps/libnum_traits-c095807cf4e69f24.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-44f8eb3d0b2fad61.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-abc626f09920d361.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-546e83c8973f1a65.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-12768dfc68674934.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-e06867e4497f2ee8.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-cbc579f43f6df57b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-7abd6d5a7ebf9a23.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-46423c7bc03bd327.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-fc3773ed7bc68f07.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-9cdc98176efd27e2.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-02d88502a763e06b.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-8cdc9d38dd6cd3ce.rlib" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-336f7d63e72901ef.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/beta-2020-06-03-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-57917b1be5233117.rlib" "-Wl,-Bdynamic" "-lSDL2_ttf" "-lSDL2_image" "-lSDL2_mixer" "-lSDL2_gfx" "-lSDL2" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: cannot find -lSDL2_ttf [INFO] [stderr] /usr/bin/ld: cannot find -lSDL2_image [INFO] [stderr] /usr/bin/ld: cannot find -lSDL2_mixer [INFO] [stderr] /usr/bin/ld: cannot find -lSDL2_gfx [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 11 warnings emitted [INFO] [stderr] [INFO] [stderr] error: could not compile `rust_pack_man`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "afa93f3583c9e6855966ed0277ef29e954af58e664ec8b1017d24a4e20a0c269"` [INFO] running `"docker" "rm" "-f" "afa93f3583c9e6855966ed0277ef29e954af58e664ec8b1017d24a4e20a0c269"` [INFO] [stdout] afa93f3583c9e6855966ed0277ef29e954af58e664ec8b1017d24a4e20a0c269