[INFO] updating cached repository https://github.com/Technius/matrops [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] 0fca0a917404b9118c5cce6b565d680b4cbd8239 [INFO] testing Technius/matrops against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FTechnius%2Fmatrops" "/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/Technius/matrops 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/Technius/matrops [INFO] finished tweaking git repo https://github.com/Technius/matrops [INFO] tweaked toml for git repo https://github.com/Technius/matrops written to /workspace/builds/worker-8/source/Cargo.toml [INFO] crate git repo https://github.com/Technius/matrops 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] 54c14b1730f8e262b96672babbdb0b9f0fa1c11030ce814be7233f2419700b90 [INFO] running `"docker" "start" "-a" "54c14b1730f8e262b96672babbdb0b9f0fa1c11030ce814be7233f2419700b90"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling num-traits v0.1.40 [INFO] [stderr] Compiling libc v0.2.33 [INFO] [stderr] Compiling gcc v0.3.54 [INFO] [stderr] Compiling pkg-config v0.3.9 [INFO] [stderr] Compiling serde v1.0.21 [INFO] [stderr] Compiling stable_deref_trait v1.0.0 [INFO] [stderr] Compiling odds v0.2.25 [INFO] [stderr] Compiling log v0.3.8 [INFO] [stderr] Compiling unicode-segmentation v1.2.0 [INFO] [stderr] Compiling unicode-width v0.1.4 [INFO] [stderr] Compiling owning_ref v0.3.3 [INFO] [stderr] Compiling rand v0.3.18 [INFO] [stderr] Compiling num-integer v0.1.35 [INFO] [stderr] Compiling num-complex v0.1.40 [INFO] [stderr] Compiling num-iter v0.1.34 [INFO] [stderr] Compiling ncurses v5.86.0 [INFO] [stderr] Compiling num-bigint v0.1.40 [INFO] [stderr] Compiling num-rational v0.1.40 [INFO] [stderr] Compiling num v0.1.40 [INFO] [stderr] Compiling toml v0.4.5 [INFO] [stderr] Compiling cursive v0.7.4 [INFO] [stderr] Compiling matrixops v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/bin/main.rs:92:9 [INFO] [stderr] | [INFO] [stderr] 92 | / s.call_on_id("matrix_view", |view: &mut MatrixView>| { [INFO] [stderr] 93 | | // FIXME: error dialog [INFO] [stderr] 94 | | let _ = view.apply_command(Command::ScaleRow { [INFO] [stderr] 95 | | coeff: coeff, [INFO] [stderr] 96 | | row: row [INFO] [stderr] 97 | | }); [INFO] [stderr] 98 | | }); [INFO] [stderr] | | ^- help: consider using a semicolon here [INFO] [stderr] | |__________| [INFO] [stderr] | expected `()`, found enum `std::option::Option` [INFO] [stderr] | [INFO] [stderr] = note: expected unit type `()` [INFO] [stderr] found enum `std::option::Option<()>` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/bin/main.rs:106:9 [INFO] [stderr] | [INFO] [stderr] 106 | / s.call_on_id("matrix_view", |view: &mut MatrixView>| { [INFO] [stderr] 107 | | // FIXME: error dialog [INFO] [stderr] 108 | | let _ = view.apply_command(Command::SwapRow { [INFO] [stderr] 109 | | row1: row1, [INFO] [stderr] 110 | | row2: row2 [INFO] [stderr] 111 | | }); [INFO] [stderr] 112 | | }); [INFO] [stderr] | | ^- help: consider using a semicolon here [INFO] [stderr] | |__________| [INFO] [stderr] | expected `()`, found enum `std::option::Option` [INFO] [stderr] | [INFO] [stderr] = note: expected unit type `()` [INFO] [stderr] found enum `std::option::Option<()>` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/bin/main.rs:121:9 [INFO] [stderr] | [INFO] [stderr] 121 | / s.call_on_id("matrix_view", |view: &mut MatrixView>| { [INFO] [stderr] 122 | | let _ = view.apply_command(Command::EditCell { [INFO] [stderr] 123 | | row, [INFO] [stderr] 124 | | col, [INFO] [stderr] 125 | | value: v [INFO] [stderr] 126 | | }); [INFO] [stderr] 127 | | }); [INFO] [stderr] | | ^- help: consider using a semicolon here [INFO] [stderr] | |__________| [INFO] [stderr] | expected `()`, found enum `std::option::Option` [INFO] [stderr] | [INFO] [stderr] = note: expected unit type `()` [INFO] [stderr] found enum `std::option::Option<()>` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/bin/main.rs:192:9 [INFO] [stderr] | [INFO] [stderr] 192 | / s.call_on_id("matrix_view", |view: &mut MatrixView>| { [INFO] [stderr] 193 | | // FIXME: error dialog [INFO] [stderr] 194 | | let _ = view.apply_command(Command::AddRow { [INFO] [stderr] 195 | | src: src, [INFO] [stderr] ... | [INFO] [stderr] 198 | | }); [INFO] [stderr] 199 | | }); [INFO] [stderr] | | ^- help: consider using a semicolon here [INFO] [stderr] | |__________| [INFO] [stderr] | expected `()`, found enum `std::option::Option` [INFO] [stderr] | [INFO] [stderr] = note: expected unit type `()` [INFO] [stderr] found enum `std::option::Option<()>` [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0308`. [INFO] [stderr] error: could not compile `matrixops`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "54c14b1730f8e262b96672babbdb0b9f0fa1c11030ce814be7233f2419700b90"` [INFO] running `"docker" "rm" "-f" "54c14b1730f8e262b96672babbdb0b9f0fa1c11030ce814be7233f2419700b90"` [INFO] [stdout] 54c14b1730f8e262b96672babbdb0b9f0fa1c11030ce814be7233f2419700b90