pastebin/.gitlab-ci.yml

35 lines
652 B
YAML
Raw Normal View History

2019-08-05 20:30:29 +00:00
build:
2019-09-20 08:20:56 +00:00
image: rust:latest
2019-08-05 20:30:29 +00:00
script:
2019-09-20 14:00:28 +00:00
- apt update
- apt install -y npm
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:
2019-09-20 17:54:27 +00:00
- migrations
- static
2019-08-05 20:30:29 +00:00
- target/release/pastebinrun
2019-09-20 09:13:29 +00:00
cache:
key: release
paths:
- target/
2019-08-09 08:00:40 +00:00
2019-09-20 08:20:56 +00:00
test:stable: &test
2019-08-09 09:45:34 +00:00
services:
- postgres
variables:
POSTGRES_DB: db
POSTGRES_USER: user
POSTGRES_PASSWORD: password
2019-09-20 08:20:56 +00:00
image: rust:latest
2019-08-09 09:45:34 +00:00
script:
2019-09-20 14:00:28 +00:00
- apt update
- apt install -y npm
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
2019-09-20 09:13:29 +00:00
cache:
key: debug
paths:
- target/