chore: update build env to golang 1.16

This commit is contained in:
Robert Kaussow 2021-05-09 23:52:38 +02:00
parent c7a5cbb700
commit 730dfaa03d
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61
3 changed files with 12 additions and 12 deletions

View File

@ -9,7 +9,7 @@ local PipelineTest = {
steps: [ steps: [
{ {
name: 'staticcheck', name: 'staticcheck',
image: 'golang:1.15', image: 'golang:1.16',
commands: [ commands: [
'go run honnef.co/go/tools/cmd/staticcheck ./...', 'go run honnef.co/go/tools/cmd/staticcheck ./...',
], ],
@ -22,7 +22,7 @@ local PipelineTest = {
}, },
{ {
name: 'lint', name: 'lint',
image: 'golang:1.15', image: 'golang:1.16',
commands: [ commands: [
'go run golang.org/x/lint/golint -set_exit_status ./...', 'go run golang.org/x/lint/golint -set_exit_status ./...',
], ],
@ -35,7 +35,7 @@ local PipelineTest = {
}, },
{ {
name: 'vet', name: 'vet',
image: 'golang:1.15', image: 'golang:1.16',
commands: [ commands: [
'go vet ./...', 'go vet ./...',
], ],
@ -48,7 +48,7 @@ local PipelineTest = {
}, },
{ {
name: 'test', name: 'test',
image: 'golang:1.15', image: 'golang:1.16',
commands: [ commands: [
'go test -race -coverprofile=coverage.txt -covermode=atomic ./...', 'go test -race -coverprofile=coverage.txt -covermode=atomic ./...',
], ],
@ -95,7 +95,7 @@ local PipelineBuildBinaries = {
steps: [ steps: [
{ {
name: 'build', name: 'build',
image: 'techknowlogick/xgo:go-1.15.x', image: 'techknowlogick/xgo:go-1.16.x',
commands: [ commands: [
'[ -z "${DRONE_TAG}" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}', '[ -z "${DRONE_TAG}" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}',
'mkdir -p release/', 'mkdir -p release/',

View File

@ -8,7 +8,7 @@ platform:
steps: steps:
- name: staticcheck - name: staticcheck
image: golang:1.15 image: golang:1.16
commands: commands:
- go run honnef.co/go/tools/cmd/staticcheck ./... - go run honnef.co/go/tools/cmd/staticcheck ./...
volumes: volumes:
@ -16,7 +16,7 @@ steps:
path: /go path: /go
- name: lint - name: lint
image: golang:1.15 image: golang:1.16
commands: commands:
- go run golang.org/x/lint/golint -set_exit_status ./... - go run golang.org/x/lint/golint -set_exit_status ./...
volumes: volumes:
@ -24,7 +24,7 @@ steps:
path: /go path: /go
- name: vet - name: vet
image: golang:1.15 image: golang:1.16
commands: commands:
- go vet ./... - go vet ./...
volumes: volumes:
@ -32,7 +32,7 @@ steps:
path: /go path: /go
- name: test - name: test
image: golang:1.15 image: golang:1.16
commands: commands:
- go test -race -coverprofile=coverage.txt -covermode=atomic ./... - go test -race -coverprofile=coverage.txt -covermode=atomic ./...
volumes: volumes:
@ -70,7 +70,7 @@ platform:
steps: steps:
- name: build - name: build
image: techknowlogick/xgo:go-1.15.x image: techknowlogick/xgo:go-1.16.x
commands: commands:
- "[ -z \"${DRONE_TAG}\" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}" - "[ -z \"${DRONE_TAG}\" ] && BUILD_VERSION=${DRONE_COMMIT_SHA:0:8} || BUILD_VERSION=${DRONE_TAG##v}"
- mkdir -p release/ - mkdir -p release/
@ -175,6 +175,6 @@ depends_on:
--- ---
kind: signature kind: signature
hmac: ea0f25d6b420728bb13c4500ee174e43f64ce6fcf5f09bd7545142f560ff8b8b hmac: 7fdbba67121342a2cc89d474cba472b10a0dc466f40ca82fd2cfa8414ae78f54
... ...

2
go.mod
View File

@ -1,6 +1,6 @@
module github.com/thegeeklab/url-parser module github.com/thegeeklab/url-parser
go 1.15 go 1.16
require ( require (
github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect github.com/cpuguy83/go-md2man/v2 v2.0.0 // indirect