20 lines
241 B
YAML
20 lines
241 B
YAML
image: rustlang/rust:nightly
|
|
|
|
basic-build:
|
|
stage: build
|
|
only:
|
|
- testing
|
|
script:
|
|
- cd server/
|
|
- cargo build --release
|
|
|
|
|
|
basic-test:
|
|
stage: test
|
|
only:
|
|
- testing
|
|
script:
|
|
- cargo run --release
|
|
- fc_id=$!
|
|
- bash ./tests/main.sh body
|