@@ -5,6 +5,7 @@ def main(ctx):
55 linux (ctx , 'amd64' ),
66 linux (ctx , 'arm64' ),
77 linux (ctx , 'arm' ),
8+ windows (ctx , '1909' ),
89 windows (ctx , '1903' ),
910 windows (ctx , '1809' ),
1011 ]
@@ -33,7 +34,7 @@ def testing(ctx):
3334 'steps' : [
3435 {
3536 'name' : 'staticcheck' ,
36- 'image' : 'golang:1.14 ' ,
37+ 'image' : 'golang:1.15 ' ,
3738 'pull' : 'always' ,
3839 'commands' : [
3940 'go run honnef.co/go/tools/cmd/staticcheck ./...' ,
@@ -47,7 +48,7 @@ def testing(ctx):
4748 },
4849 {
4950 'name' : 'lint' ,
50- 'image' : 'golang:1.14 ' ,
51+ 'image' : 'golang:1.15 ' ,
5152 'pull' : 'always' ,
5253 'commands' : [
5354 'go run golang.org/x/lint/golint -set_exit_status ./...' ,
@@ -61,7 +62,7 @@ def testing(ctx):
6162 },
6263 {
6364 'name' : 'vet' ,
64- 'image' : 'golang:1.14 ' ,
65+ 'image' : 'golang:1.15 ' ,
6566 'pull' : 'always' ,
6667 'commands' : [
6768 'go vet ./...' ,
@@ -75,7 +76,7 @@ def testing(ctx):
7576 },
7677 {
7778 'name' : 'test' ,
78- 'image' : 'golang:1.14 ' ,
79+ 'image' : 'golang:1.15 ' ,
7980 'pull' : 'always' ,
8081 'commands' : [
8182 'go test -cover ./...' ,
@@ -146,7 +147,7 @@ def linux(ctx, arch):
146147 'steps' : [
147148 {
148149 'name' : 'environment' ,
149- 'image' : 'golang:1.14 ' ,
150+ 'image' : 'golang:1.15 ' ,
150151 'pull' : 'always' ,
151152 'environment' : {
152153 'CGO_ENABLED' : '0' ,
@@ -158,7 +159,7 @@ def linux(ctx, arch):
158159 },
159160 {
160161 'name' : 'build' ,
161- 'image' : 'golang:1.14 ' ,
162+ 'image' : 'golang:1.15 ' ,
162163 'pull' : 'always' ,
163164 'environment' : {
164165 'CGO_ENABLED' : '0' ,
@@ -167,7 +168,7 @@ def linux(ctx, arch):
167168 },
168169 {
169170 'name' : 'executable' ,
170- 'image' : 'golang:1.14 ' ,
171+ 'image' : 'golang:1.15 ' ,
171172 'pull' : 'always' ,
172173 'commands' : [
173174 './release/linux/%s/drone-download --help' % (arch ),
0 commit comments