Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

build with go 1.12 #281

Merged
merged 1 commit into from
Aug 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,14 @@ workspace:
pipeline:
test:
secrets: [ codecov_token ]
image: golang:1.10
image: golang:1.12
commands:
- make test
- make coverage.txt
- ./ci/codecov.sh

benchmarks:
image: golang:1.10
image: golang:1.12
commands:
- make bench

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.10-alpine3.8 as build
FROM golang:1.12-alpine3.10 as build
RUN apk add --no-cache make
WORKDIR /go/src/github.com/uswitch/kiam
ADD . .
Expand Down