forked from nytimes/drone-gke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
82 lines (71 loc) · 1.38 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
---
workspace:
base: /go
path: src/github.com/NYTimes/drone-gke
build_config: &build_config
image: golang:1.10
environment:
- CGO_ENABLED=0
commands:
- go build -a -ldflags "-X main.version=${DRONE_TAG:-0.8} -X main.rev=${DRONE_COMMIT}"
publish_config: &publish_config
image: plugins/docker
repo: nytimes/drone-gke
secrets:
- docker_username
- docker_password
pipeline:
test:
image: golang:1.10
environment:
- CGO_ENABLED=0
commands:
- go vet
- go test -cover
build:
<<: *build_config
when:
branch:
- develop
- master
build_release:
<<: *build_config
when:
event: tag
publish_develop:
<<: *publish_config
tag:
- "develop"
when:
event: push
branch: develop
publish_latest:
<<: *publish_config
auto_tag: true
publish_1_8:
<<: *publish_config
auto_tag: true
auto_tag_suffix: "k8s-1.8"
dockerfile: Dockerfile.1.8
publish_1_9:
<<: *publish_config
auto_tag: true
auto_tag_suffix: "k8s-1.9"
dockerfile: Dockerfile.1.9
slack:
image: plugins/slack
channel: dv-notifications
secrets:
- slack_webhook
when:
branch:
- develop
- master
slack_tag:
image: plugins/slack
channel: dv-notifications
secrets:
- slack_webhook
when:
event:
- tag