-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
62 lines (56 loc) · 1.24 KB
/
.drone.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
kind: pipeline
type: docker
name: default
services:
- name: postgres
image: postgres:13-alpine
environment:
POSTGRES_USER: swiki
POSTGRES_DB: swiki
POSTGRES_PASSWORD: abc123
steps:
- name: restore cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
restore: true
mount:
- ./target
- ./cargo-home
- name: migrate and test
image: rust:1
environment:
CARGO_HOME: ./cargo-home
DATABASE_URL: postgres://swiki:abc123@postgres:5432/swiki
ROCKET_DATABASE_URL: postgres://swiki:abc123@postgres:5432/swiki
commands:
- cargo install sqlx-cli --no-default-features --features postgres
- cargo sqlx migrate run
- cargo test
- name: rebuild cache
image: drillster/drone-volume-cache
volumes:
- name: cache
path: /cache
settings:
rebuild: true
mount:
- ./target
- ./cargo-home
- name: send telegram notification
image: appleboy/drone-telegram
settings:
token:
from_secret: bot_token
to: -1001423060188
when:
branch:
- main
event:
- push
volumes:
- name: cache
host:
path: /tmp/cache