Skip to content

Commit fcb9fbe

Browse files
committed
drone: go 1.13 is here
1 parent 43067a2 commit fcb9fbe

File tree

2 files changed

+5
-71
lines changed

2 files changed

+5
-71
lines changed

drone/ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// 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'];
33

44
local goproxy = 'https://proxy.golang.org';
55

drone/ci.yml

Lines changed: 4 additions & 70 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# DO NOT MODIFY - AUTO GENERATED
33

44
kind: pipeline
5-
name: go-1.13rc1
5+
name: go-1.13
66

77
platform:
88
os: linux
@@ -14,7 +14,7 @@ workspace:
1414

1515
steps:
1616
- name: mod-download
17-
image: golang:1.13rc1
17+
image: golang:1.13
1818
commands:
1919
- go mod download
2020
environment:
@@ -23,7 +23,7 @@ steps:
2323
- clone
2424

2525
- name: coverage
26-
image: golang:1.13rc1
26+
image: golang:1.13
2727
commands:
2828
- apt update
2929
- apt install -y redis-server
@@ -42,7 +42,7 @@ steps:
4242
- mod-download
4343

4444
- name: build
45-
image: golang:1.13rc1
45+
image: golang:1.13
4646
commands:
4747
- make build
4848
environment:
@@ -180,70 +180,4 @@ steps:
180180
depends_on:
181181
- build
182182

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-
249183
...

0 commit comments

Comments
 (0)