Skip to content

Commit 1f8fd25

Browse files
committed
ci: bump Go to 1.15 and 1.14.2
1 parent 2e701de commit 1f8fd25

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
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.14.2', '1.13.10'];
2+
local go_versions = ['1.15', '1.14.7'];
33

44
local test_dockerfile = {
55
name: 'test-dockerfile',

drone/ci.yml

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
2-
# DO NOT MODIFY - AUTO GENERATED
3-
42
kind: pipeline
5-
name: go-1.14.2
3+
name: go-1.15
64

75
platform:
86
os: linux
@@ -14,14 +12,14 @@ workspace:
1412

1513
steps:
1614
- name: mod-download
17-
image: golang:1.14.2
15+
image: golang:1.15
1816
commands:
1917
- go mod download
2018
depends_on:
2119
- clone
2220

2321
- name: coverage
24-
image: golang:1.14.2
22+
image: golang:1.15
2523
commands:
2624
- apt update
2725
- apt install -y redis-server
@@ -39,7 +37,7 @@ steps:
3937
- mod-download
4038

4139
- name: build
42-
image: golang:1.14.2
40+
image: golang:1.15
4341
commands:
4442
- make build
4543
environment:
@@ -112,7 +110,7 @@ steps:
112110

113111
---
114112
kind: pipeline
115-
name: go-1.13.10
113+
name: go-1.14.7
116114

117115
platform:
118116
os: linux
@@ -124,14 +122,14 @@ workspace:
124122

125123
steps:
126124
- name: mod-download
127-
image: golang:1.13.10
125+
image: golang:1.14.7
128126
commands:
129127
- go mod download
130128
depends_on:
131129
- clone
132130

133131
- name: coverage
134-
image: golang:1.13.10
132+
image: golang:1.14.7
135133
commands:
136134
- apt update
137135
- apt install -y redis-server
@@ -149,7 +147,7 @@ steps:
149147
- mod-download
150148

151149
- name: build
152-
image: golang:1.13.10
150+
image: golang:1.14.7
153151
commands:
154152
- make build
155153
environment:

0 commit comments

Comments
 (0)