upgrade to go1.13

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
Bo-Yi Wu 2019-09-25 18:43:28 +08:00
parent 3d2c9a75cf
commit e6bc04f39c
2 changed files with 22 additions and 52 deletions

View File

@ -9,45 +9,38 @@ platform:
steps: steps:
- name: vet - name: vet
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- make vet - make vet
environment:
GO111MODULE: on
volumes: volumes:
- name: gopath - name: gopath
path: /go path: /go
- name: lint - name: lint
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- make lint - make lint
environment:
GO111MODULE: on
volumes: volumes:
- name: gopath - name: gopath
path: /go path: /go
- name: misspell - name: misspell
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- make misspell-check - make misspell-check
environment:
GO111MODULE: on
volumes: volumes:
- name: gopath - name: gopath
path: /go path: /go
- name: test - name: test
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- make test - make test
- make coverage - make coverage
environment: environment:
GO111MODULE: on
TELEGRAM_TO: TELEGRAM_TO:
from_secret: telegram_to from_secret: telegram_to
TELEGRAM_TOKEN: TELEGRAM_TOKEN:
@ -78,12 +71,11 @@ platform:
steps: steps:
- name: build-push - name: build-push
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/amd64/drone-telegram" - "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/amd64/drone-telegram"
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0
GO111MODULE: on
when: when:
event: event:
exclude: exclude:
@ -91,19 +83,18 @@ steps:
- name: build-tag - name: build-tag
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/amd64/drone-telegram" - "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/amd64/drone-telegram"
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0
GO111MODULE: on
when: when:
event: event:
- tag - tag
- name: executable - name: executable
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- ./release/linux/amd64/drone-telegram --help - ./release/linux/amd64/drone-telegram --help
@ -159,12 +150,11 @@ platform:
steps: steps:
- name: build-push - name: build-push
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/drone-telegram" - "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/drone-telegram"
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0
GO111MODULE: on
when: when:
event: event:
exclude: exclude:
@ -172,19 +162,18 @@ steps:
- name: build-tag - name: build-tag
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/drone-telegram" - "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/drone-telegram"
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0
GO111MODULE: on
when: when:
event: event:
- tag - tag
- name: executable - name: executable
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- ./release/linux/arm64/drone-telegram --help - ./release/linux/arm64/drone-telegram --help
@ -240,12 +229,11 @@ platform:
steps: steps:
- name: build-push - name: build-push
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/drone-telegram" - "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/drone-telegram"
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0
GO111MODULE: on
when: when:
event: event:
exclude: exclude:
@ -253,19 +241,18 @@ steps:
- name: build-tag - name: build-tag
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/drone-telegram" - "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/drone-telegram"
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0
GO111MODULE: on
when: when:
event: event:
- tag - tag
- name: executable - name: executable
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- ./release/linux/arm/drone-telegram --help - ./release/linux/arm/drone-telegram --help
@ -321,11 +308,9 @@ platform:
steps: steps:
- name: build-all-binary - name: build-all-binary
pull: always pull: always
image: golang:1.12 image: golang:1.13
commands: commands:
- make release - make release
environment:
GO111MODULE: on
when: when:
event: event:
- tag - tag

View File

@ -9,11 +9,8 @@
steps: [ steps: [
{ {
name: 'vet', name: 'vet',
image: 'golang:1.12', image: 'golang:1.13',
pull: 'always', pull: 'always',
environment: {
GO111MODULE: 'on',
},
commands: [ commands: [
'make vet', 'make vet',
], ],
@ -26,11 +23,8 @@
}, },
{ {
name: 'lint', name: 'lint',
image: 'golang:1.12', image: 'golang:1.13',
pull: 'always', pull: 'always',
environment: {
GO111MODULE: 'on',
},
commands: [ commands: [
'make lint', 'make lint',
], ],
@ -43,11 +37,8 @@
}, },
{ {
name: 'misspell', name: 'misspell',
image: 'golang:1.12', image: 'golang:1.13',
pull: 'always', pull: 'always',
environment: {
GO111MODULE: 'on',
},
commands: [ commands: [
'make misspell-check', 'make misspell-check',
], ],
@ -60,10 +51,9 @@
}, },
{ {
name: 'test', name: 'test',
image: 'golang:1.12', image: 'golang:1.13',
pull: 'always', pull: 'always',
environment: { environment: {
GO111MODULE: 'on',
TELEGRAM_TOKEN: { 'from_secret': 'telegram_token' }, TELEGRAM_TOKEN: { 'from_secret': 'telegram_token' },
TELEGRAM_TO: { 'from_secret': 'telegram_to' }, TELEGRAM_TO: { 'from_secret': 'telegram_to' },
}, },
@ -105,11 +95,10 @@
steps: [ steps: [
{ {
name: 'build-push', name: 'build-push',
image: 'golang:1.12', image: 'golang:1.13',
pull: 'always', pull: 'always',
environment: { environment: {
CGO_ENABLED: '0', CGO_ENABLED: '0',
GO111MODULE: 'on',
}, },
commands: [ commands: [
'go build -v -ldflags \'-X main.build=${DRONE_BUILD_NUMBER}\' -a -o release/' + os + '/' + arch + '/' + name, 'go build -v -ldflags \'-X main.build=${DRONE_BUILD_NUMBER}\' -a -o release/' + os + '/' + arch + '/' + name,
@ -122,11 +111,10 @@
}, },
{ {
name: 'build-tag', name: 'build-tag',
image: 'golang:1.12', image: 'golang:1.13',
pull: 'always', pull: 'always',
environment: { environment: {
CGO_ENABLED: '0', CGO_ENABLED: '0',
GO111MODULE: 'on',
}, },
commands: [ commands: [
'go build -v -ldflags \'-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\' -a -o release/' + os + '/' + arch + '/' + name, 'go build -v -ldflags \'-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\' -a -o release/' + os + '/' + arch + '/' + name,
@ -137,7 +125,7 @@
}, },
{ {
name: 'executable', name: 'executable',
image: 'golang:1.12', image: 'golang:1.13',
pull: 'always', pull: 'always',
commands: [ commands: [
'./release/' + os + '/' + arch + '/' + name + ' --help', './release/' + os + '/' + arch + '/' + name + ' --help',
@ -202,11 +190,8 @@
steps: [ steps: [
{ {
name: 'build-all-binary', name: 'build-all-binary',
image: 'golang:1.12', image: 'golang:1.13',
pull: 'always', pull: 'always',
environment: {
GO111MODULE: 'on',
},
commands: [ commands: [
'make release' 'make release'
], ],