16 lines
253 B
YAML
16 lines
253 B
YAML
|
default:
|
||
|
image: rust
|
||
|
|
||
|
stages:
|
||
|
- build
|
||
|
|
||
|
metallica-the-unforgiven:
|
||
|
stage: build
|
||
|
script:
|
||
|
- cargo run --release -- ${THE_UNFORGIVEN_INPUT}
|
||
|
|
||
|
eagles-hotel-california:
|
||
|
stage: build
|
||
|
script:
|
||
|
- cargo run --release -- ${HOTEL_CALIFORNIA_INPUT}
|