[INFO] updating cached repository https://github.com/shybyte/rust-midi-patcher [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] a7dda29654452f47507f407dccbba8a138616ec5 [INFO] testing shybyte/rust-midi-patcher against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fshybyte%2Frust-midi-patcher" "/workspace/builds/worker-2/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/shybyte/rust-midi-patcher 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/shybyte/rust-midi-patcher [INFO] finished tweaking git repo https://github.com/shybyte/rust-midi-patcher [INFO] tweaked toml for git repo https://github.com/shybyte/rust-midi-patcher written to /workspace/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/shybyte/rust-midi-patcher 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-2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2/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] [stdout] eca0f9ad9b0d9162ee66b5a726c908bbc8f7d89058e7385a14d678a02086500e [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" "eca0f9ad9b0d9162ee66b5a726c908bbc8f7d89058e7385a14d678a02086500e"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling slab v0.4.1 [INFO] [stderr] Compiling lazycell v1.2.0 [INFO] [stderr] Compiling futures v0.1.25 [INFO] [stderr] Compiling lazy_static v0.2.4 [INFO] [stderr] Compiling crossbeam-utils v0.5.0 [INFO] [stderr] Compiling midi-message v0.1.0 (https://github.com/shybyte/midi-message-rs#cda61b2d) [INFO] [stderr] Compiling unreachable v1.0.0 [INFO] [stderr] Compiling iovec v0.1.2 [INFO] [stderr] Compiling net2 v0.2.33 [INFO] [stderr] Compiling memchr v1.0.1 [INFO] [stderr] Compiling thread-id v3.0.0 [INFO] [stderr] Compiling rand v0.3.15 [INFO] [stderr] Compiling inotify-sys v0.1.3 [INFO] [stderr] Compiling filetime v0.2.4 [INFO] [stderr] Compiling rand v0.5.5 [INFO] [stderr] Compiling smallvec v0.6.6 [INFO] [stderr] Compiling thread_local v0.3.3 [INFO] [stderr] Compiling aho-corasick v0.6.3 [INFO] [stderr] Compiling bytes v0.4.11 [INFO] [stderr] Compiling regex v0.2.1 [INFO] [stderr] Compiling mio v0.6.16 [INFO] [stderr] Compiling chan v0.1.23 [INFO] [stderr] Compiling mio-extras v2.0.5 [INFO] [stderr] Compiling chan-signal v0.3.2 [INFO] [stderr] Compiling midi2opc v0.1.0 (https://github.com/shybyte/midi2opc#825f0ab0) [INFO] [stderr] Compiling parking_lot_core v0.3.1 [INFO] [stderr] Compiling risp v0.7.0 [INFO] [stderr] Compiling parking_lot v0.6.4 [INFO] [stderr] Compiling tokio-executor v0.1.5 [INFO] [stderr] Compiling tokio-io v0.1.10 [INFO] [stderr] Compiling tokio-reactor v0.1.6 [INFO] [stderr] Compiling inotify v0.6.1 [INFO] [stderr] Compiling notify v4.0.6 [INFO] [stderr] Compiling rust_midi_patcher v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/patch.rs:15:37 [INFO] [stderr] | [INFO] [stderr] 15 | effects: Vec<(Box, Box)>, [INFO] [stderr] | ^^^^^^ help: use `dyn`: `dyn Effect` [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/patch.rs:24:74 [INFO] [stderr] | [INFO] [stderr] 24 | pub fn new>(name: S, effects: Vec<(Box, Box)>, program: u8, [INFO] [stderr] | ^^^^^^ help: use `dyn`: `dyn Effect` [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/patch.rs:37:62 [INFO] [stderr] | [INFO] [stderr] 37 | pub fn new_simple>(name: S, effects: Vec<(Box)>, program: u8) -> Patch { [INFO] [stderr] | ^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/patch.rs:37:67 [INFO] [stderr] | [INFO] [stderr] 37 | pub fn new_simple>(name: S, effects: Vec<(Box)>, program: u8) -> Patch { [INFO] [stderr] | ^^^^^^ help: use `dyn`: `dyn Effect` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/load_patches.rs:110:119 [INFO] [stderr] | [INFO] [stderr] 110 | fn to_trigger_effect_pair(input: &RispType, default_time_per_note: i64, config: &Config) -> Result<(Box, Box), RispError> { [INFO] [stderr] | ^^^^^^ help: use `dyn`: `dyn Effect` [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around block return value [INFO] [stderr] --> src/utils/mod.rs:94:5 [INFO] [stderr] | [INFO] [stderr] 94 | (midi_message.status == 0x90 || (midi_message.status == 0x99 && midi_message.data2 > 0)) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around block return value [INFO] [stderr] --> src/utils/mod.rs:98:5 [INFO] [stderr] | [INFO] [stderr] 98 | (midi_message.status == 0x80) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around block return value [INFO] [stderr] --> src/utils/mod.rs:102:5 [INFO] [stderr] | [INFO] [stderr] 102 | (midi_message.status == 0xB0) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::effects::sweep_down::SweepDown` [INFO] [stderr] --> src/songs/endstation_paradies.rs:21:5 [INFO] [stderr] | [INFO] [stderr] 21 | use crate::effects::sweep_down::SweepDown; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::utils::Boxable` [INFO] [stderr] --> src/songs/endstation_paradies.rs:22:5 [INFO] [stderr] | [INFO] [stderr] 22 | use crate::utils::Boxable; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::microkorg::VOLUME` [INFO] [stderr] --> src/songs/endstation/liebt_uns.rs:18:5 [INFO] [stderr] | [INFO] [stderr] 18 | use crate::microkorg::VOLUME; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: static is never used: `BASE_NOTE` [INFO] [stderr] --> src/songs/endstation/liebt_uns.rs:21:1 [INFO] [stderr] | [INFO] [stderr] 21 | static BASE_NOTE: &str = "BASE_NOTE"; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: function is never used: `liebt_uns2` [INFO] [stderr] --> src/songs/endstation/liebt_uns.rs:96:8 [INFO] [stderr] | [INFO] [stderr] 96 | pub fn liebt_uns2(_config2: &Config) -> Patch { [INFO] [stderr] | ^^^^^^^^^^ [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_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.rust_midi_patcher.dubyfiac-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50" "/opt/rustwide/target/debug/deps/rust_midi_patcher-211e5960c8db8f50.2qqrm8n79lni77ha.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/libnotify-e9ea60a7e0e41df6.rlib" "/opt/rustwide/target/debug/deps/libwalkdir-114b216c0d17057c.rlib" "/opt/rustwide/target/debug/deps/libsame_file-47d142800a859901.rlib" "/opt/rustwide/target/debug/deps/libinotify-02e8f341f4c43d0b.rlib" "/opt/rustwide/target/debug/deps/libtokio_reactor-4c2facc0e1f1368f.rlib" "/opt/rustwide/target/debug/deps/libtokio_io-51ea14292decb744.rlib" "/opt/rustwide/target/debug/deps/libbytes-b6f6c0e1fbb728f2.rlib" "/opt/rustwide/target/debug/deps/libbyteorder-1944a57d09be4cce.rlib" "/opt/rustwide/target/debug/deps/libtokio_executor-1981a18f2f294766.rlib" "/opt/rustwide/target/debug/deps/libparking_lot-d79d5d23a6372baf.rlib" "/opt/rustwide/target/debug/deps/libparking_lot_core-c99742af2d75fe35.rlib" "/opt/rustwide/target/debug/deps/libsmallvec-c5c3a5cd90c4c6c0.rlib" "/opt/rustwide/target/debug/deps/libunreachable-52b2d6386dab8ec7.rlib" "/opt/rustwide/target/debug/deps/librand-1ba4a48f6010fa08.rlib" "/opt/rustwide/target/debug/deps/librand_core-4559cea9f604d8b9.rlib" "/opt/rustwide/target/debug/deps/librand_core-e6affed9e2153188.rlib" "/opt/rustwide/target/debug/deps/liblock_api-734d2ba8deaa924f.rlib" "/opt/rustwide/target/debug/deps/libowning_ref-8dcea63b701e2ec8.rlib" "/opt/rustwide/target/debug/deps/libstable_deref_trait-52d0dd6ebcd8d383.rlib" "/opt/rustwide/target/debug/deps/libscopeguard-d89c2d7a36eb453e.rlib" "/opt/rustwide/target/debug/deps/libnum_cpus-1b317b2f551efb06.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-a1e73fe56b37829c.rlib" "/opt/rustwide/target/debug/deps/libcrossbeam_utils-a66f7fb3c3f1e0ac.rlib" "/opt/rustwide/target/debug/deps/libfutures-82b1569be0ae111a.rlib" "/opt/rustwide/target/debug/deps/libinotify_sys-76eb4979d8eeac66.rlib" "/opt/rustwide/target/debug/deps/libfiletime-953b80d067dfe65e.rlib" "/opt/rustwide/target/debug/deps/libmio_extras-4668a3956690c55f.rlib" "/opt/rustwide/target/debug/deps/libmio-96139a71b2cf1bb9.rlib" "/opt/rustwide/target/debug/deps/liblog-f6038cc70ed47e96.rlib" "/opt/rustwide/target/debug/deps/libslab-c9a9abd5b0d314a7.rlib" "/opt/rustwide/target/debug/deps/libiovec-5511960026bb815b.rlib" "/opt/rustwide/target/debug/deps/libnet2-e21d2a86f5c58bf0.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-ea4f283344e50e84.rlib" "/opt/rustwide/target/debug/deps/liblazycell-2dc61600daa3f8c8.rlib" "/opt/rustwide/target/debug/deps/libbitflags-4ba13cb97dd85092.rlib" "/opt/rustwide/target/debug/deps/libmidi2opc-6bb5218d6f092cff.rlib" "/opt/rustwide/target/debug/deps/libmidi_message-7995803b14ac5030.rlib" "/opt/rustwide/target/debug/deps/librisp-68fb5be8fac81506.rlib" "/opt/rustwide/target/debug/deps/libregex-6dd1912539d075fe.rlib" "/opt/rustwide/target/debug/deps/libutf8_ranges-e7f6abb4561855e8.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-34090e69ed94786b.rlib" "/opt/rustwide/target/debug/deps/libthread_local-f8f76fabea1586ad.rlib" "/opt/rustwide/target/debug/deps/libunreachable-9a2163c458d54763.rlib" "/opt/rustwide/target/debug/deps/libvoid-6034f9c135881af0.rlib" "/opt/rustwide/target/debug/deps/libthread_id-299d7898dee7ab78.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-51567d8fe87c7530.rlib" "/opt/rustwide/target/debug/deps/libmemchr-5ac5a20cb84a7838.rlib" "/opt/rustwide/target/debug/deps/libchan_signal-4ade4b3934307f08.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-ffa308207b698332.rlib" "/opt/rustwide/target/debug/deps/libbit_set-0e4924c80cdd6ce1.rlib" "/opt/rustwide/target/debug/deps/libbit_vec-9f4250e78b57b39b.rlib" "/opt/rustwide/target/debug/deps/libportmidi-736a6a5c9c1fbdae.rlib" "/opt/rustwide/target/debug/deps/libchan-709be2baf48679fa.rlib" "/opt/rustwide/target/debug/deps/librand-59c1fdb5d032c58e.rlib" "/opt/rustwide/target/debug/deps/liblibc-4a054305212779d5.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" "-lportmidi" "-lutil" "-lutil" "-ldl" "-lrt" "-lpthread" "-lgcc_s" "-lc" "-lm" "-lrt" "-lpthread" "-lutil" "-ldl" "-lutil" [INFO] [stderr] = note: /usr/bin/ld: cannot find -lportmidi [INFO] [stderr] collect2: error: ld returned 1 exit status [INFO] [stderr] [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error; 13 warnings emitted [INFO] [stderr] [INFO] [stderr] error: could not compile `rust_midi_patcher`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "eca0f9ad9b0d9162ee66b5a726c908bbc8f7d89058e7385a14d678a02086500e"` [INFO] running `"docker" "rm" "-f" "eca0f9ad9b0d9162ee66b5a726c908bbc8f7d89058e7385a14d678a02086500e"` [INFO] [stdout] eca0f9ad9b0d9162ee66b5a726c908bbc8f7d89058e7385a14d678a02086500e