forked from gravitational/teleport-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
247 lines (207 loc) · 4.81 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
---
kind: pipeline
type: kubernetes
name: test-linux
trigger:
branch:
- master
- branch/*
event:
include:
- push
- pull_request
repo:
include:
- gravitational/*
workspace:
path: /go/src/github.com/gravitational/teleport-plugins
steps:
- name: Run linter
image: golangci/golangci-lint:v1.27.0
commands:
- make lint
- name: Run tests
image: golang:1.15.5
commands:
- make test
---
kind: pipeline
type: exec
name: test-darwin
concurrency:
limit: 1
platform:
os: darwin
arch: amd64
trigger:
branch:
- master
- branch/*
event:
include:
- push
- pull_request
repo:
include:
- gravitational/*
workspace:
path: /tmp/teleport-plugins/test-darwin
steps:
- name: Clean up exec runner storage (pre)
commands:
- rm -rf /tmp/teleport-plugins/test-darwin/go
- mkdir -p /tmp/teleport-plugins/test-darwin/go
- chmod -R u+rw /tmp/teleport-plugins/test-darwin/go
- name: Run tests
environment:
GOPATH: /tmp/teleport-plugins/test-darwin/go
GOCACHE: /tmp/teleport-plugins/test-darwin/go/cache
commands:
- go version
- make test
- name: Clean up exec runner storage (post)
commands:
- rm -rf /tmp/teleport-plugins/test-darwin/go
---
kind: pipeline
type: kubernetes
name: build-on-push-linux
trigger:
branch:
- master
- branch/*
event:
include:
- push
repo:
include:
- gravitational/*
depends_on:
- test-linux
workspace:
path: /go/src/github.com/gravitational/teleport-plugins
steps:
- name: Build artifacts
image: golang:1.15.5
commands:
- make build-all
---
kind: pipeline
type: exec
name: build-on-push-darwin
concurrency:
limit: 1
platform:
os: darwin
arch: amd64
trigger:
branch:
- master
- branch/*
event:
include:
- push
repo:
include:
- gravitational/*
depends_on:
- test-darwin
workspace:
path: /tmp/teleport-plugins/build-darwin
steps:
- name: Clean up exec runner storage (pre)
commands:
- rm -rf /tmp/teleport-plugins/build-darwin/go
- mkdir -p /tmp/teleport-plugins/build-darwin/go/cache
- chmod -R u+rw /tmp/teleport-plugins/build-darwin/go
- name: Build artifacts (darwin)
environment:
GOPATH: /tmp/teleport-plugins/build-darwin/go
GOCACHE: /tmp/teleport-plugins/build-darwin/go/cache
commands:
- make build-all
- name: Clean up exec runner storage (post)
commands:
- rm -rf /tmp/teleport-plugins/build-darwin/go
---
kind: pipeline
type: kubernetes
name: tag-build-linux
trigger:
event:
- tag
ref:
include:
- refs/tags/teleport-*-v*
depends_on:
- test-linux
workspace:
path: /go/src/github.com/gravitational/teleport-plugins
steps:
- name: Build artifacts
image: golang:1.15.5
commands:
- mkdir -p build/
- export PLUGIN_TYPE=$(echo ${DRONE_TAG} | cut -d- -f2)
- make release/access-$PLUGIN_TYPE
- find access/ -iname "*.tar.gz" -print -exec cp {} build/ \;
- cd build
- for FILE in *.tar.gz; do sha256sum $FILE > $FILE.sha256; done
- ls -l .
- name: Upload to S3
image: plugins/s3
settings:
bucket:
from_secret: AWS_S3_BUCKET
access_key:
from_secret: AWS_ACCESS_KEY_ID
secret_key:
from_secret: AWS_SECRET_ACCESS_KEY
region: us-west-2
source: /go/src/github.com/gravitational/teleport-plugins/build/*
target: teleport-plugins/tag/${DRONE_TAG}
strip_prefix: /go/src/github.com/gravitational/teleport-plugins/build
---
kind: pipeline
type: kubernetes
name: promote-artifact
trigger:
event:
- promote
target:
- production
workspace:
path: /go/src/github.com/gravitational/teleport-plugins
clone:
disable: true
steps:
- name: Download artifact from S3 artifact publishing bucket
image: amazon/aws-cli
environment:
AWS_S3_BUCKET:
from_secret: AWS_S3_BUCKET
AWS_ACCESS_KEY_ID:
from_secret: AWS_ACCESS_KEY_ID
AWS_SECRET_ACCESS_KEY:
from_secret: AWS_SECRET_ACCESS_KEY
AWS_REGION: us-west-2
commands:
- aws s3 sync s3://$AWS_S3_BUCKET/teleport-plugins/tag/${DRONE_TAG}/ .
- name: Upload artifact to production S3 bucket with public read access
image: plugins/s3
settings:
bucket:
from_secret: PRODUCTION_AWS_S3_BUCKET
access_key:
from_secret: PRODUCTION_AWS_ACCESS_KEY_ID
secret_key:
from_secret: PRODUCTION_AWS_SECRET_ACCESS_KEY
region: us-east-1
acl: public-read
source: /go/src/github.com/gravitational/teleport-plugins/*
target: teleport-plugins/${DRONE_TAG##*-v}/
strip_prefix: /go/src/github.com/gravitational/teleport-plugins/
---
kind: signature
hmac: 488b49769a5fa00dc1cf55d7e982d0f49d0ac004c2ba056ada96b8c3570943dd
...