forked from harness/harness
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
56 lines (50 loc) · 1.04 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
workspace:
base: /go
path: src/github.com/drone/drone
pipeline:
test:
image: golang:1.8
commands:
- make deps gen
- make test test_postgres test_mysql
dist:
image: golang:1.8
commands:
- ./ci.sh
- ./dist.sh
secrets: [ ssh_key ]
when:
event: push
archive:
image: plugins/s3
acl: public-read
bucket: downloads.drone.io
source: release/**/*.*
target: /0.6.0/
secrets: [ aws_access_key_id, aws_secret_access_key ]
when:
event: push
branch: master
publish:
image: plugins/docker
repo: drone/drone
secrets: [ docker_username, docker_password ]
tag: [ latest, 0.6, 0.6.0 ]
when:
branch: master
event: push
notify:
image: plugins/gitter
secrets: [ gitter_webhook ]
when:
status: [ success, failure ]
services:
postgres:
image: postgres:9.4.5
environment:
- POSTGRES_USER=postgres
mysql:
image: mysql:5.6.27
environment:
- MYSQL_DATABASE=test
- MYSQL_ALLOW_EMPTY_PASSWORD=yes