16 lines
194 B
YAML
16 lines
194 B
YAML
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
|