[INFO] updating cached repository https://github.com/simonratner/sits [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] 981d6669899a46d2d7d9ef84fc0084521e240111 [INFO] checking simonratner/sits against try#e4dba30b9b475d8750370c4dfb49b6541990904d for pr-71393 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsimonratner%2Fsits" "/workspace/builds/worker-9/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-9/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/simonratner/sits on toolchain e4dba30b9b475d8750370c4dfb49b6541990904d [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/simonratner/sits [INFO] finished tweaking git repo https://github.com/simonratner/sits [INFO] tweaked toml for git repo https://github.com/simonratner/sits written to /workspace/builds/worker-9/source/Cargo.toml [INFO] crate git repo https://github.com/simonratner/sits already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] error: the lock file /workspace/builds/worker-9/source/Cargo.lock needs to be updated but --locked was passed to prevent this [INFO] [stderr] If you want to try to generate the lock file without accessing the network, use the --offline flag. [INFO] the lockfile is outdated, regenerating it [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] [stderr] Updating git repository `https://github.com/dcampbell24/iup-rust` [INFO] running `"/workspace/cargo-home/bin/cargo" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-9/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=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" "+e4dba30b9b475d8750370c4dfb49b6541990904d" "check" "--frozen" "--all" "--all-targets"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 9fb061efd37f3a3f5137ed2ea6eecdcd76383af2896339d5259f29271de15d55 [INFO] running `"docker" "start" "-a" "9fb061efd37f3a3f5137ed2ea6eecdcd76383af2896339d5259f29271de15d55"` [INFO] [stderr] Compiling iup-sys v0.0.3 [INFO] [stderr] Compiling proc-macro-hack v0.5.15 [INFO] [stderr] Checking libc v0.1.12 [INFO] [stderr] Checking strsim v0.9.3 [INFO] [stderr] Checking RustyXML v0.3.0 [INFO] [stderr] Compiling serde v1.0.106 [INFO] [stderr] Compiling proc-macro2 v1.0.12 [INFO] [stderr] Compiling time v0.2.14 [INFO] [stderr] Compiling log v0.3.9 [INFO] [stderr] Checking iup v0.0.3 (https://github.com/dcampbell24/iup-rust#3daddd1f) [INFO] [stderr] Compiling quote v1.0.4 [INFO] [stderr] Compiling syn v1.0.18 [INFO] [stderr] error[E0277]: a value of type `[std::path::PathBuf; 1]` cannot be built from an iterator over elements of type `std::path::PathBuf` [INFO] [stderr] --> /opt/rustwide/cargo-home/git/checkouts/iup-rust-848a7d570fe350d7/3daddd1/src/dialog/file.rs:35:26 [INFO] [stderr] | [INFO] [stderr] 35 | Some(values.into_iter().skip(1) [INFO] [stderr] | __________________________^ [INFO] [stderr] 36 | | .map(|file| path.join(file)) [INFO] [stderr] 37 | | .collect()) [INFO] [stderr] | |_________________________________________^ value of type `[std::path::PathBuf; 1]` cannot be built from `std::iter::Iterator` [INFO] [stderr] | [INFO] [stderr] = help: the trait `std::iter::FromIterator` is not implemented for `[std::path::PathBuf; 1]` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> /opt/rustwide/cargo-home/git/checkouts/iup-rust-848a7d570fe350d7/3daddd1/src/dialog/file.rs:26:9 [INFO] [stderr] | [INFO] [stderr] 25 | pub fn files(&self) -> Option> { [INFO] [stderr] | -------------------- expected `std::option::Option>` because of return type [INFO] [stderr] 26 | / self.attrib("VALUE").and_then(|value| { [INFO] [stderr] 27 | | let values = value.split_terminator('|').collect::>(); [INFO] [stderr] 28 | | match values.len() { [INFO] [stderr] 29 | | 0 => None, [INFO] [stderr] ... | [INFO] [stderr] 39 | | } [INFO] [stderr] 40 | | }) [INFO] [stderr] | |__________^ expected struct `std::vec::Vec`, found array of 1 element [INFO] [stderr] | [INFO] [stderr] = note: expected enum `std::option::Option>` [INFO] [stderr] found enum `std::option::Option<[std::path::PathBuf; 1]>` [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0308. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `iup`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "9fb061efd37f3a3f5137ed2ea6eecdcd76383af2896339d5259f29271de15d55"` [INFO] running `"docker" "rm" "-f" "9fb061efd37f3a3f5137ed2ea6eecdcd76383af2896339d5259f29271de15d55"` [INFO] [stdout] 9fb061efd37f3a3f5137ed2ea6eecdcd76383af2896339d5259f29271de15d55