pastebin/.gitlab-ci.yml

21 lines
467 B
YAML
Raw Normal View History

2019-08-05 20:30:29 +00:00
build:
2019-09-16 21:03:48 +00:00
image: rustlang/rust:nightly
2019-08-05 20:30:29 +00:00
script:
2019-08-09 08:00:40 +00:00
- &print_version rustc --version && cargo --version
2019-08-05 20:30:29 +00:00
- cargo build --release --verbose
artifacts:
paths:
- target/release/pastebinrun
2019-08-09 08:00:40 +00:00
2019-09-16 21:03:48 +00:00
test:nightly: &test
2019-08-09 09:45:34 +00:00
services:
- postgres
variables:
POSTGRES_DB: db
POSTGRES_USER: user
POSTGRES_PASSWORD: password
2019-09-16 21:03:48 +00:00
image: rustlang/rust:nightly
2019-08-09 09:45:34 +00:00
script:
2019-08-09 08:00:40 +00:00
- *print_version
2019-08-09 09:45:34 +00:00
- DATABASE_URL=postgresql://user:password@postgres/db cargo test --verbose