From 35f4a2dfe5a460558595e420907ed5f77c7785f9 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 6 Dec 2020 23:50:31 +0100 Subject: [PATCH] switch to go 1.15 --- .drone.jsonnet | 10 +++++----- .drone.yml | 12 ++++++------ CHANGELOG.md | 2 +- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 9698e71..3eb584a 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -9,7 +9,7 @@ local PipelineTest = { steps: [ { name: 'staticcheck', - image: 'golang:1.14', + image: 'golang:1.15', commands: [ 'go run honnef.co/go/tools/cmd/staticcheck ./...', ], @@ -22,7 +22,7 @@ local PipelineTest = { }, { name: 'lint', - image: 'golang:1.14', + image: 'golang:1.15', commands: [ 'go run golang.org/x/lint/golint -set_exit_status ./...', ], @@ -35,7 +35,7 @@ local PipelineTest = { }, { name: 'vet', - image: 'golang:1.14', + image: 'golang:1.15', commands: [ 'go vet ./...', ], @@ -48,7 +48,7 @@ local PipelineTest = { }, { name: 'test', - image: 'golang:1.14', + image: 'golang:1.15', commands: [ 'go test -race -coverprofile=coverage.txt -covermode=atomic ./...', ], @@ -95,7 +95,7 @@ local PipelineBuildBinaries = { steps: [ { name: 'build', - image: 'techknowlogick/xgo:go-1.14.x', + image: 'techknowlogick/xgo:go-1.15.x', commands: [ '[ -z "${DRONE_TAG}" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}', 'mkdir -p release/', diff --git a/.drone.yml b/.drone.yml index 0986f53..cbbd8ad 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,7 +8,7 @@ platform: steps: - name: staticcheck - image: golang:1.14 + image: golang:1.15 commands: - go run honnef.co/go/tools/cmd/staticcheck ./... volumes: @@ -16,7 +16,7 @@ steps: path: /go - name: lint - image: golang:1.14 + image: golang:1.15 commands: - go run golang.org/x/lint/golint -set_exit_status ./... volumes: @@ -24,7 +24,7 @@ steps: path: /go - name: vet - image: golang:1.14 + image: golang:1.15 commands: - go vet ./... volumes: @@ -32,7 +32,7 @@ steps: path: /go - name: test - image: golang:1.14 + image: golang:1.15 commands: - go test -race -coverprofile=coverage.txt -covermode=atomic ./... volumes: @@ -70,7 +70,7 @@ platform: steps: - name: build - image: techknowlogick/xgo:go-1.14.x + image: techknowlogick/xgo:go-1.15.x commands: - "[ -z \"${DRONE_TAG}\" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}" - mkdir -p release/ @@ -162,6 +162,6 @@ depends_on: --- kind: signature -hmac: 4e6b6ec60c6a01f20ded56de08f051f1e7baaf74dda8c649d839d5a8053a999e +hmac: 5491f814e4edd00e12047cd91988765ed1af400a4a30ab4401ca2015096ab4f4 ... diff --git a/CHANGELOG.md b/CHANGELOG.md index a4101a8..4d63fb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,2 +1,2 @@ - INTERNAL - - refactor project structure + - switch to go 1.15