-
Notifications
You must be signed in to change notification settings - Fork 89
/
.drone.yml
93 lines (82 loc) · 1.4 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
---
kind: pipeline
name: default
type: vm
pool:
use: ubuntu
platform:
os: linux
arch: amd64
steps:
- name: test
pull: default
image: golang
volumes:
- name: deps
path: /go
commands:
- go get
- go test -v -cover ./...
- name: test_postgres
pull: default
image: golang
volumes:
- name: deps
path: /go
commands:
- cd store
- go test -v
environment:
DATABASE_CONFIG: host=postgres user=postgres password=password dbname=test sslmode=disable
DATABASE_DRIVER: postgres
- name: test_mysql
pull: default
image: golang
volumes:
- name: deps
path: /go
commands:
- cd store
- go test -v
environment:
DATABASE_CONFIG: "root:password@tcp(mysql:3306)/test?parseTime=true"
DATABASE_DRIVER: mysql
- name: build
pull: default
image: golang
volumes:
- name: deps
path: /go
commands:
- sh .drone.sh
- name: publish
pull: default
image: plugins/docker
settings:
auto_tag: true
repo: drone/autoscaler
password:
from_secret: docker_password
username:
from_secret: docker_username
when:
event:
- push
- tag
volumes:
- name: deps
temp: {}
services:
- name: postgres
pull: default
image: postgres:9
environment:
POSTGRES_DB: test
POSTGRES_PASSWORD: password
- name: mysql
pull: default
image: mysql:5
environment:
MYSQL_DATABASE: test
MYSQL_ROOT_PASSWORD: password
...