[INFO] updating cached repository https://github.com/jugglerchris/aoc2017 [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/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] 916cad896d19425b197d0bc3bc24f851242fe72d [INFO] testing jugglerchris/aoc2017 against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fjugglerchris%2Faoc2017" "work/builds/worker-2/source"` [INFO] [stderr] Cloning into 'work/builds/worker-2/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/jugglerchris/aoc2017 on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/jugglerchris/aoc2017 [INFO] finished tweaking git repo https://github.com/jugglerchris/aoc2017 [INFO] tweaked toml for git repo https://github.com/jugglerchris/aoc2017 written to work/builds/worker-2/source/Cargo.toml [INFO] crate git repo https://github.com/jugglerchris/aoc2017 already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-2/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-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-2019-09-28" "build" "--frozen"` [INFO] [stdout] fc9bd36a3af81d585edb7edcb5b7e91762cba28547472b925ba62a6864b587b9 [INFO] running `"docker" "start" "-a" "fc9bd36a3af81d585edb7edcb5b7e91762cba28547472b925ba62a6864b587b9"` [INFO] [stderr] Compiling libc v0.2.34 [INFO] [stderr] Compiling thread_local v0.3.4 [INFO] [stderr] Compiling memchr v2.0.1 [INFO] [stderr] Compiling aho-corasick v0.6.4 [INFO] [stderr] Compiling regex v0.2.3 [INFO] [stderr] Compiling aoc2017 v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/lib.rs:38:17 [INFO] [stderr] | [INFO] [stderr] 38 | let mut f = try!(File::open(&filename)); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/lib.rs:163:5 [INFO] [stderr] | [INFO] [stderr] 163 | / regex_parser!(parse_operand: Operand { [INFO] [stderr] 164 | | VAL = r#"^(-?\d+)$"# => | val: isize | Operand::Val(val), [INFO] [stderr] 165 | | REG = r#"^(\w)$"# => | reg: String | Operand::Reg((reg.chars().next().unwrap() as u8 - b'a') as usize) [INFO] [stderr] 166 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:163:5 [INFO] [stderr] | [INFO] [stderr] 163 | / regex_parser!(parse_operand: Operand { [INFO] [stderr] 164 | | VAL = r#"^(-?\d+)$"# => | val: isize | Operand::Val(val), [INFO] [stderr] 165 | | REG = r#"^(\w)$"# => | reg: String | Operand::Reg((reg.chars().next().unwrap() as u8 - b'a') as usize) [INFO] [stderr] 166 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 7.78s [INFO] running `"docker" "inspect" "fc9bd36a3af81d585edb7edcb5b7e91762cba28547472b925ba62a6864b587b9"` [INFO] running `"docker" "rm" "-f" "fc9bd36a3af81d585edb7edcb5b7e91762cba28547472b925ba62a6864b587b9"` [INFO] [stdout] fc9bd36a3af81d585edb7edcb5b7e91762cba28547472b925ba62a6864b587b9 [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-2/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-2/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-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-2019-09-28" "test" "--frozen" "--no-run"` [INFO] [stdout] 21cc0cc2af7bb889e5bdf67752f178da5fd1f94456ff744c1466198f0c950a08 [INFO] running `"docker" "start" "-a" "21cc0cc2af7bb889e5bdf67752f178da5fd1f94456ff744c1466198f0c950a08"` [INFO] [stderr] Compiling aoc2017 v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day3.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day21.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day10.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/lib.rs:38:17 [INFO] [stderr] | [INFO] [stderr] 38 | let mut f = try!(File::open(&filename)); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/lib.rs:163:5 [INFO] [stderr] | [INFO] [stderr] 163 | / regex_parser!(parse_operand: Operand { [INFO] [stderr] 164 | | VAL = r#"^(-?\d+)$"# => | val: isize | Operand::Val(val), [INFO] [stderr] 165 | | REG = r#"^(\w)$"# => | reg: String | Operand::Reg((reg.chars().next().unwrap() as u8 - b'a') as usize) [INFO] [stderr] 166 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:163:5 [INFO] [stderr] | [INFO] [stderr] 163 | / regex_parser!(parse_operand: Operand { [INFO] [stderr] 164 | | VAL = r#"^(-?\d+)$"# => | val: isize | Operand::Val(val), [INFO] [stderr] 165 | | REG = r#"^(\w)$"# => | reg: String | Operand::Reg((reg.chars().next().unwrap() as u8 - b'a') as usize) [INFO] [stderr] 166 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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/lib.rs:190:5 [INFO] [stderr] | [INFO] [stderr] 190 | / regex_parser!(parse_insn: Insn { [INFO] [stderr] 191 | | SND = r#"snd (.*)$"# => | op: Operand | Snd(op), [INFO] [stderr] 192 | | SET = r#"set (.*) (.*)$"# => | op1: Operand, op2: Operand | Set(op1, op2), [INFO] [stderr] 193 | | ADD = r#"add (.*) (.*)$"# => | op1: Operand, op2: Operand | Add(op1, op2), [INFO] [stderr] ... | [INFO] [stderr] 199 | | JNZ = r#"jnz (.*) (.*)$"# => | op1: Operand, op2: Operand | Jnz(op1, op2) [INFO] [stderr] 200 | | }); [INFO] [stderr] | |_______^ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day22.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day25.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day2.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day1.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day9.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused `#[macro_use]` import [INFO] [stderr] --> examples/day9.rs:2:1 [INFO] [stderr] | [INFO] [stderr] 2 | #[macro_use] extern crate aoc2017; [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day16.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> examples/day16.rs:13:1 [INFO] [stderr] | [INFO] [stderr] 13 | / regex_parser!(parse_move: Move { [INFO] [stderr] 14 | | SPIN = r#"^s(\d+)$"# => | x: usize | Spin(x), [INFO] [stderr] 15 | | EXCHANGE = r#"^x(\d+)/(\d+)$"# => | a: usize, b: usize | Exchange(a,b), [INFO] [stderr] 16 | | PARTNER = r#"^p(.)/(.)$"# => | a: char, b: char | Partner(a as u8 - b'a', b as u8 - b'a') [INFO] [stderr] 17 | | }); [INFO] [stderr] | |___^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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] --> examples/day16.rs:13:1 [INFO] [stderr] | [INFO] [stderr] 13 | / regex_parser!(parse_move: Move { [INFO] [stderr] 14 | | SPIN = r#"^s(\d+)$"# => | x: usize | Spin(x), [INFO] [stderr] 15 | | EXCHANGE = r#"^x(\d+)/(\d+)$"# => | a: usize, b: usize | Exchange(a,b), [INFO] [stderr] 16 | | PARTNER = r#"^p(.)/(.)$"# => | a: char, b: char | Partner(a as u8 - b'a', b as u8 - b'a') [INFO] [stderr] 17 | | }); [INFO] [stderr] | |___^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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] --> examples/day16.rs:13:1 [INFO] [stderr] | [INFO] [stderr] 13 | / regex_parser!(parse_move: Move { [INFO] [stderr] 14 | | SPIN = r#"^s(\d+)$"# => | x: usize | Spin(x), [INFO] [stderr] 15 | | EXCHANGE = r#"^x(\d+)/(\d+)$"# => | a: usize, b: usize | Exchange(a,b), [INFO] [stderr] 16 | | PARTNER = r#"^p(.)/(.)$"# => | a: char, b: char | Partner(a as u8 - b'a', b as u8 - b'a') [INFO] [stderr] 17 | | }); [INFO] [stderr] | |___^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day23.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day8.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> examples/day8.rs:66:1 [INFO] [stderr] | [INFO] [stderr] 66 | / regex_parser!(parse_insn: Instruction { [INFO] [stderr] 67 | | INSN = r#"^(\w+) (inc|dec) (-?\d+) if (\w+) (==|!=|<|>|<=|>=) (-?\d+)$"# => [INFO] [stderr] 68 | | | target: String, op: Operation, adjval: isize, cond_src: String, [INFO] [stderr] 69 | | cmp: Comparison, cmpval: isize | [INFO] [stderr] ... | [INFO] [stderr] 77 | | } [INFO] [stderr] 78 | | }); [INFO] [stderr] | |___^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day14.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day15.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: unused `#[macro_use]` import [INFO] [stderr] --> examples/day15.rs:2:1 [INFO] [stderr] | [INFO] [stderr] 2 | #[macro_use] extern crate aoc2017; [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused `#[macro_use]` import [INFO] [stderr] --> examples/day15.rs:3:1 [INFO] [stderr] | [INFO] [stderr] 3 | #[macro_use] extern crate lazy_static; [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day24.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0554]: `#![feature]` may not be used on the beta release channel [INFO] [stderr] --> examples/day7.rs:1:1 [INFO] [stderr] | [INFO] [stderr] 1 | #![feature(conservative_impl_trait)] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> examples/day7.rs:14:1 [INFO] [stderr] | [INFO] [stderr] 14 | / regex_parser!(parse_tinfo: TowerInfo { [INFO] [stderr] 15 | | TOWER = r#"^\s*(\w+) \((\d+)\) -> ([\w, ]*)$"# => [INFO] [stderr] 16 | | | name: String, weight: usize, childstring: String| [INFO] [stderr] 17 | | TowerInfo { [INFO] [stderr] ... | [INFO] [stderr] 27 | | } [INFO] [stderr] 28 | | }); [INFO] [stderr] | |___^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-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] --> examples/day7.rs:14:1 [INFO] [stderr] | [INFO] [stderr] 14 | / regex_parser!(parse_tinfo: TowerInfo { [INFO] [stderr] 15 | | TOWER = r#"^\s*(\w+) \((\d+)\) -> ([\w, ]*)$"# => [INFO] [stderr] 16 | | | name: String, weight: usize, childstring: String| [INFO] [stderr] 17 | | TowerInfo { [INFO] [stderr] ... | [INFO] [stderr] 27 | | } [INFO] [stderr] 28 | | }); [INFO] [stderr] | |___^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error: aborting due to previous error [INFO] [stderr] [INFO] [stderr] For more information about this error, try `rustc --explain E0554`. [INFO] [stderr] error: could not compile `aoc2017`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: build failed [INFO] running `"docker" "inspect" "21cc0cc2af7bb889e5bdf67752f178da5fd1f94456ff744c1466198f0c950a08"` [INFO] running `"docker" "rm" "-f" "21cc0cc2af7bb889e5bdf67752f178da5fd1f94456ff744c1466198f0c950a08"` [INFO] [stdout] 21cc0cc2af7bb889e5bdf67752f178da5fd1f94456ff744c1466198f0c950a08