File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ platform:
99steps :
1010- name : vet
1111 pull : always
12- image : golang:1.11
12+ image : golang:1.13
1313 commands :
1414 - go vet ./...
1515 environment :
2020
2121- name : test
2222 pull : always
23- image : golang:1.11
23+ image : golang:1.13
2424 commands :
2525 - go test -cover ./...
2626 environment :
@@ -52,7 +52,7 @@ platform:
5252steps :
5353- name : build-push
5454 pull : always
55- image : golang:1.11
55+ image : golang:1.13
5656 commands :
5757 - " go build -v -ldflags \" -X main.version=${DRONE_COMMIT_SHA:0:8}\" -a -tags netgo -o release/linux/amd64/drone-docker ./cmd/drone-docker"
5858 environment :
6565
6666- name : build-tag
6767 pull : always
68- image : golang:1.11
68+ image : golang:1.13
6969 commands :
7070 - " go build -v -ldflags \" -X main.version=${DRONE_TAG##v}\" -a -tags netgo -o release/linux/amd64/drone-docker ./cmd/drone-docker"
7171 environment :
7777
7878- name : executable
7979 pull : always
80- image : golang:1.11
80+ image : golang:1.13
8181 commands :
8282 - ./release/linux/amd64/drone-docker --help
8383
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ local test_pipeline_name = 'testing';
55local windows(os) = os == 'windows' ;
66
77local golang_image(os, version) =
8- 'golang:' + '1.11 ' + if windows(os) then '-windowsservercore-' + version else '' ;
8+ 'golang:' + '1.13 ' + if windows(os) then '-windowsservercore-' + version else '' ;
99
1010{
1111 test(os='linux', arch='amd64', version='')::
You can’t perform that action at this time.
0 commit comments