File tree Expand file tree Collapse file tree 2 files changed +5
-71
lines changed Expand file tree Collapse file tree 2 files changed +5
-71
lines changed Original file line number Diff line number Diff line change 1
1
// the first version is used to build the binary that gets shipped to Docker Hub.
2
- local go_versions = ['1.13rc1 ' , '1.12.9' , '1.11.13 ' ];
2
+ local go_versions = ['1.13 ' , '1.12.9' ];
3
3
4
4
local goproxy = 'https://proxy.golang.org' ;
5
5
Original file line number Diff line number Diff line change 2
2
# DO NOT MODIFY - AUTO GENERATED
3
3
4
4
kind : pipeline
5
- name : go-1.13rc1
5
+ name : go-1.13
6
6
7
7
platform :
8
8
os : linux
@@ -14,7 +14,7 @@ workspace:
14
14
15
15
steps :
16
16
- name : mod-download
17
- image : golang:1.13rc1
17
+ image : golang:1.13
18
18
commands :
19
19
- go mod download
20
20
environment :
23
23
- clone
24
24
25
25
- name : coverage
26
- image : golang:1.13rc1
26
+ image : golang:1.13
27
27
commands :
28
28
- apt update
29
29
- apt install -y redis-server
42
42
- mod-download
43
43
44
44
- name : build
45
- image : golang:1.13rc1
45
+ image : golang:1.13
46
46
commands :
47
47
- make build
48
48
environment :
@@ -180,70 +180,4 @@ steps:
180
180
depends_on :
181
181
- build
182
182
183
- ---
184
- kind : pipeline
185
- name : go-1.11.13
186
-
187
- platform :
188
- os : linux
189
- arch : amd64
190
-
191
- workspace :
192
- base : /go
193
- path : video-transcoding-api
194
-
195
- steps :
196
- - name : mod-download
197
- image : golang:1.11.13
198
- commands :
199
- - go mod download
200
- environment :
201
- GOPROXY : https://proxy.golang.org
202
- depends_on :
203
- - clone
204
-
205
- - name : coverage
206
- image : golang:1.11.13
207
- commands :
208
- - apt update
209
- - apt install -y redis-server
210
- - redis-server &>/dev/null &
211
- - timeout 10 sh -c "while ! redis-cli ping; do echo waiting for redis-server to start; sleep 1; done"
212
- - make gocoverage
213
- depends_on :
214
- - mod-download
215
-
216
- - name : lint
217
- pull : always
218
- image : golangci/golangci-lint
219
- commands :
220
- - make runlint
221
- depends_on :
222
- - mod-download
223
-
224
- - name : build
225
- image : golang:1.11.13
226
- commands :
227
- - make build
228
- environment :
229
- CGO_ENABLED : 0
230
- when :
231
- event :
232
- - pull_request
233
- - push
234
- depends_on :
235
- - mod-download
236
-
237
- - name : test-ci-dockerfile
238
- image : plugins/docker
239
- settings :
240
- dockerfile : drone/Dockerfile
241
- dry_run : true
242
- repo : videodev/video-transcoding-api
243
- when :
244
- event :
245
- - pull_request
246
- depends_on :
247
- - build
248
-
249
183
...
You can’t perform that action at this time.
0 commit comments