mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-30 00:01:25 +00:00
start postgres later
This commit is contained in:
parent
37fc1d721f
commit
331985f0a0
1 changed files with 9 additions and 8 deletions
15
.drone.yml
15
.drone.yml
|
@ -34,6 +34,14 @@ steps:
|
||||||
- cargo install diesel_cli --no-default-features --features postgres
|
- cargo install diesel_cli --no-default-features --features postgres
|
||||||
- mv /root/.cargo/bin/diesel /dieselcli/diesel
|
- mv /root/.cargo/bin/diesel /dieselcli/diesel
|
||||||
|
|
||||||
|
# start postgres this way so that previous steps can be cached
|
||||||
|
- name: database
|
||||||
|
image: postgres:12-alpine
|
||||||
|
environment:
|
||||||
|
POSTGRES_USER: lemmy
|
||||||
|
POSTGRES_PASSWORD: password
|
||||||
|
detach: true
|
||||||
|
|
||||||
- name: install deps and run cargo test
|
- name: install deps and run cargo test
|
||||||
image: ekidd/rust-musl-builder:experimental-stable
|
image: ekidd/rust-musl-builder:experimental-stable
|
||||||
user: root
|
user: root
|
||||||
|
@ -85,13 +93,6 @@ steps:
|
||||||
- refs/heads/feature-*
|
- refs/heads/feature-*
|
||||||
- refs/tags/*
|
- refs/tags/*
|
||||||
|
|
||||||
services:
|
|
||||||
- name: database
|
|
||||||
image: postgres:12-alpine
|
|
||||||
environment:
|
|
||||||
POSTGRES_USER: lemmy
|
|
||||||
POSTGRES_PASSWORD: password
|
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: dieselcli
|
- name: dieselcli
|
||||||
temp: {}
|
temp: {}
|
Loading…
Reference in a new issue