2021-12-10 12:58:13 +01:00
|
|
|
default:
|
|
|
|
image: rust
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
|
|
|
|
day-1:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day1; cargo run --release ./input
|
|
|
|
|
|
|
|
day-2:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day2; cargo run --release ./input
|
|
|
|
|
|
|
|
day-3:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day3; cargo run --release ./input
|
|
|
|
|
|
|
|
day-4:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day4; cargo run --release ./input
|
|
|
|
|
|
|
|
day-5:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day5; cargo run --release ./input
|
|
|
|
|
|
|
|
day-6:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day6; cargo run --release ./input
|
|
|
|
|
|
|
|
day-7:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day7; cargo run --release ./input
|
|
|
|
|
|
|
|
day-8:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day8; cargo run --release ./input
|
2021-12-11 22:55:09 +01:00
|
|
|
|
|
|
|
day-9:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day9; cargo run --release ./input
|
2021-12-12 23:33:26 +01:00
|
|
|
|
|
|
|
day-10:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day10; cargo run --release ./input
|
2021-12-15 00:37:12 +01:00
|
|
|
|
|
|
|
day-11:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day11; cargo run --release ./input
|
2021-12-18 00:16:22 +01:00
|
|
|
|
|
|
|
day-12:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day12; cargo run --release ./input
|
2021-12-19 00:49:30 +01:00
|
|
|
|
|
|
|
day-13:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day13; cargo run --release ./input
|
2021-12-21 01:08:17 +01:00
|
|
|
|
|
|
|
day-14:
|
|
|
|
stage: build
|
|
|
|
script:
|
|
|
|
- cd day14; cargo run --release ./input
|