Skip to content

Commit

Permalink
drone: Go 1.12.10/1.13.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fsouza committed Oct 14, 2019
1 parent 616039d commit e5c56a1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion drone/ci.jsonnet
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// the first version is used to build the binary that gets shipped to Docker Hub.
local go_versions = ['1.13', '1.12.9'];
local go_versions = ['1.13.1', '1.12.10'];

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

Expand Down
16 changes: 8 additions & 8 deletions drone/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# DO NOT MODIFY - AUTO GENERATED

kind: pipeline
name: go-1.13
name: go-1.13.1

platform:
os: linux
Expand All @@ -14,7 +14,7 @@ workspace:

steps:
- name: mod-download
image: golang:1.13
image: golang:1.13.1
commands:
- go mod download
environment:
Expand All @@ -23,7 +23,7 @@ steps:
- clone

- name: coverage
image: golang:1.13
image: golang:1.13.1
commands:
- apt update
- apt install -y redis-server
Expand All @@ -42,7 +42,7 @@ steps:
- mod-download

- name: build
image: golang:1.13
image: golang:1.13.1
commands:
- make build
environment:
Expand Down Expand Up @@ -116,7 +116,7 @@ steps:

---
kind: pipeline
name: go-1.12.9
name: go-1.12.10

platform:
os: linux
Expand All @@ -128,7 +128,7 @@ workspace:

steps:
- name: mod-download
image: golang:1.12.9
image: golang:1.12.10
commands:
- go mod download
environment:
Expand All @@ -137,7 +137,7 @@ steps:
- clone

- name: coverage
image: golang:1.12.9
image: golang:1.12.10
commands:
- apt update
- apt install -y redis-server
Expand All @@ -156,7 +156,7 @@ steps:
- mod-download

- name: build
image: golang:1.12.9
image: golang:1.12.10
commands:
- make build
environment:
Expand Down

0 comments on commit e5c56a1

Please sign in to comment.