[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 1.44.0 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-8/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-8/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/shybyte/rust-midi-patcher 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/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-8/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" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [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" "+1.44.0" "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] c22af8ef331a268a39e78eabcbd7372d0ec511055438d5afcc5e6ccb732dd2eb [INFO] running `"docker" "start" "-a" "c22af8ef331a268a39e78eabcbd7372d0ec511055438d5afcc5e6ccb732dd2eb"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling lazycell v1.2.0 [INFO] [stderr] Compiling lazy_static v0.2.4 [INFO] [stderr] Compiling crossbeam-utils v0.5.0 [INFO] [stderr] Compiling regex-syntax v0.4.0 [INFO] [stderr] Compiling same-file v1.0.4 [INFO] [stderr] Compiling midi-message v0.1.0 (https://github.com/shybyte/midi-message-rs#cda61b2d) [INFO] [stderr] Compiling iovec v0.1.2 [INFO] [stderr] Compiling num_cpus v1.8.0 [INFO] [stderr] Compiling rand v0.3.15 [INFO] [stderr] Compiling thread-id v3.0.0 [INFO] [stderr] Compiling memchr v1.0.1 [INFO] [stderr] Compiling inotify-sys v0.1.3 [INFO] [stderr] Compiling net2 v0.2.33 [INFO] [stderr] Compiling filetime v0.2.4 [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 walkdir v2.2.7 [INFO] [stderr] Compiling parking_lot_core v0.3.1 [INFO] [stderr] Compiling mio v0.6.16 [INFO] [stderr] Compiling tokio-io v0.1.10 [INFO] [stderr] Compiling parking_lot v0.6.4 [INFO] [stderr] Compiling chan v0.1.23 [INFO] [stderr] Compiling regex v0.2.1 [INFO] [stderr] Compiling chan-signal v0.3.2 [INFO] [stderr] Compiling tokio-reactor v0.1.6 [INFO] [stderr] Compiling mio-extras v2.0.5 [INFO] [stderr] Compiling midi2opc v0.1.0 (https://github.com/shybyte/midi2opc#825f0ab0) [INFO] [stderr] Compiling inotify v0.6.1 [INFO] [stderr] Compiling notify v4.0.6 [INFO] [stderr] Compiling risp v0.7.0 [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 item 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/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.0.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.1.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.10.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.11.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.12.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.13.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.14.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.15.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.2.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.3.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.4.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.5.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.6.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.7.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.8.rcgu.o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.rust_midi_patcher.7bbvs52x-cgu.9.rcgu.o" "-o" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292" "/opt/rustwide/target/debug/deps/rust_midi_patcher-a1738b29edf87292.dtso5pmm06h2ap7.rcgu.o" "-Wl,--gc-sections" "-pie" "-Wl,-zrelro" "-Wl,-znow" "-nodefaultlibs" "-L" "/opt/rustwide/target/debug/deps" "-L" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib" "-Wl,-Bstatic" "/opt/rustwide/target/debug/deps/libnotify-0ecb1741b2e02eb5.rlib" "/opt/rustwide/target/debug/deps/libwalkdir-1a0f8702b2a87fcd.rlib" "/opt/rustwide/target/debug/deps/libsame_file-2ba2f949685cf49b.rlib" "/opt/rustwide/target/debug/deps/libinotify-ab8869f7efe5c5e6.rlib" "/opt/rustwide/target/debug/deps/libtokio_reactor-3a36451b38afeb48.rlib" "/opt/rustwide/target/debug/deps/libtokio_io-7615738d00daad61.rlib" "/opt/rustwide/target/debug/deps/libbytes-14cc8fabda4194ac.rlib" "/opt/rustwide/target/debug/deps/libbyteorder-12d08455b18d4b97.rlib" "/opt/rustwide/target/debug/deps/libtokio_executor-3c7804aa5dc765ee.rlib" "/opt/rustwide/target/debug/deps/libparking_lot-1e3bede456cecd71.rlib" "/opt/rustwide/target/debug/deps/libparking_lot_core-d20385e5e1ec4fd7.rlib" "/opt/rustwide/target/debug/deps/libsmallvec-6589f787574b3175.rlib" "/opt/rustwide/target/debug/deps/libunreachable-af05623850dc442c.rlib" "/opt/rustwide/target/debug/deps/librand-59b6a6086b4952fe.rlib" "/opt/rustwide/target/debug/deps/librand_core-3064dd5add40643f.rlib" "/opt/rustwide/target/debug/deps/librand_core-db8f890f1662cc9c.rlib" "/opt/rustwide/target/debug/deps/liblock_api-d8b21120cfbbc8ff.rlib" "/opt/rustwide/target/debug/deps/libowning_ref-2ef1d1fc70c75ac5.rlib" "/opt/rustwide/target/debug/deps/libstable_deref_trait-fd809b37baaaeaf1.rlib" "/opt/rustwide/target/debug/deps/libscopeguard-96db1f09e66479ea.rlib" "/opt/rustwide/target/debug/deps/libnum_cpus-9aee1fa86d57d54c.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-fc6ae06af858b32a.rlib" "/opt/rustwide/target/debug/deps/libcrossbeam_utils-b76433b2336cac62.rlib" "/opt/rustwide/target/debug/deps/libfutures-1fb822a21a4c8949.rlib" "/opt/rustwide/target/debug/deps/libinotify_sys-29e091f4a8bc9f2d.rlib" "/opt/rustwide/target/debug/deps/libfiletime-1e58dddb2a2647bb.rlib" "/opt/rustwide/target/debug/deps/libmio_extras-5e563397ed65605e.rlib" "/opt/rustwide/target/debug/deps/libmio-db64db9482530c07.rlib" "/opt/rustwide/target/debug/deps/liblog-cc96050100bf31d6.rlib" "/opt/rustwide/target/debug/deps/libslab-51596de4b4140135.rlib" "/opt/rustwide/target/debug/deps/libiovec-95a38c7933fbc914.rlib" "/opt/rustwide/target/debug/deps/libnet2-a294460f5e3ab5cd.rlib" "/opt/rustwide/target/debug/deps/libcfg_if-d9bc28547053b377.rlib" "/opt/rustwide/target/debug/deps/liblazycell-02b2b1b1c421c2e2.rlib" "/opt/rustwide/target/debug/deps/libbitflags-3b8dce027c498e76.rlib" "/opt/rustwide/target/debug/deps/libmidi2opc-8d051378827ac67d.rlib" "/opt/rustwide/target/debug/deps/libmidi_message-c85760658c3a1434.rlib" "/opt/rustwide/target/debug/deps/librisp-3de26b8a99e19409.rlib" "/opt/rustwide/target/debug/deps/libregex-f4ff7b04702c4a32.rlib" "/opt/rustwide/target/debug/deps/libutf8_ranges-5ad13cb014affa8b.rlib" "/opt/rustwide/target/debug/deps/libregex_syntax-a104968998558a81.rlib" "/opt/rustwide/target/debug/deps/libthread_local-48016846882b9e42.rlib" "/opt/rustwide/target/debug/deps/libunreachable-0be79f0d0c84a743.rlib" "/opt/rustwide/target/debug/deps/libvoid-ef80a4c5b644431d.rlib" "/opt/rustwide/target/debug/deps/libthread_id-4ac11f799a670271.rlib" "/opt/rustwide/target/debug/deps/libaho_corasick-cc8e3188629d807f.rlib" "/opt/rustwide/target/debug/deps/libmemchr-cced45084f75e073.rlib" "/opt/rustwide/target/debug/deps/libchan_signal-9950ba1228df6d30.rlib" "/opt/rustwide/target/debug/deps/liblazy_static-664900687320f41f.rlib" "/opt/rustwide/target/debug/deps/libbit_set-fc2f3d8e81df93d3.rlib" "/opt/rustwide/target/debug/deps/libbit_vec-47d76610f7410d15.rlib" "/opt/rustwide/target/debug/deps/libportmidi-22c3cd11bb3ecd85.rlib" "/opt/rustwide/target/debug/deps/libchan-d45ebd140433a26c.rlib" "/opt/rustwide/target/debug/deps/librand-3a79a840d29c4232.rlib" "/opt/rustwide/target/debug/deps/liblibc-3889bc2b1e3d26c9.rlib" "-Wl,--start-group" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libstd-205127404fcba336.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libpanic_unwind-a657948fb7763780.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libhashbrown-4af901391177f653.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_alloc-9bdd51edf637d1e0.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace-df9a9630b2ea2e1e.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libbacktrace_sys-fddbfe63d5cc9339.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_demangle-dc1fcc6e43806791.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libunwind-e2f4bff19e00107e.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcfg_if-a152d13c1d7ed405.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liblibc-d92b841792fc008d.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/liballoc-a64c249515c023f5.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/librustc_std_workspace_core-57654524b3e40c00.rlib" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcore-72180f1527a726a2.rlib" "-Wl,--end-group" "/opt/rustwide/rustup-home/toolchains/1.44.0-x86_64-unknown-linux-gnu/lib/rustlib/x86_64-unknown-linux-gnu/lib/libcompiler_builtins-990cc8f4a91a3ab4.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" "c22af8ef331a268a39e78eabcbd7372d0ec511055438d5afcc5e6ccb732dd2eb"` [INFO] running `"docker" "rm" "-f" "c22af8ef331a268a39e78eabcbd7372d0ec511055438d5afcc5e6ccb732dd2eb"` [INFO] [stdout] c22af8ef331a268a39e78eabcbd7372d0ec511055438d5afcc5e6ccb732dd2eb