Browse Source

upgrade to go1.16

Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
update-packer-186
Bo-Yi Wu 4 years ago
parent
commit
609ca3840e
  1. 26
      .drone.yml
  2. 16
      pipeline.libsonnet

26
.drone.yml

@ -9,7 +9,7 @@ platform:
steps: steps:
- name: vet - name: vet
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- make vet - make vet
volumes: volumes:
@ -18,7 +18,7 @@ steps:
- name: misspell - name: misspell
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- make misspell-check - make misspell-check
volumes: volumes:
@ -27,7 +27,7 @@ steps:
- name: test - name: test
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- make test - make test
- make coverage - make coverage
@ -62,7 +62,7 @@ platform:
steps: steps:
- name: build-push - name: build-push
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/amd64/drone-packer" - "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/amd64/drone-packer"
environment: environment:
@ -74,7 +74,7 @@ steps:
- name: build-tag - name: build-tag
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/amd64/drone-packer" - "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/amd64/drone-packer"
environment: environment:
@ -85,7 +85,7 @@ steps:
- name: executable - name: executable
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- ./release/linux/amd64/drone-packer --help - ./release/linux/amd64/drone-packer --help
@ -141,7 +141,7 @@ platform:
steps: steps:
- name: build-push - name: build-push
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/drone-packer" - "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/drone-packer"
environment: environment:
@ -153,7 +153,7 @@ steps:
- name: build-tag - name: build-tag
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/drone-packer" - "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm64/drone-packer"
environment: environment:
@ -164,7 +164,7 @@ steps:
- name: executable - name: executable
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- ./release/linux/arm64/drone-packer --help - ./release/linux/arm64/drone-packer --help
@ -220,7 +220,7 @@ platform:
steps: steps:
- name: build-push - name: build-push
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/drone-packer" - "go build -v -ldflags '-X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/drone-packer"
environment: environment:
@ -232,7 +232,7 @@ steps:
- name: build-tag - name: build-tag
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/drone-packer" - "go build -v -ldflags '-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}' -a -o release/linux/arm/drone-packer"
environment: environment:
@ -243,7 +243,7 @@ steps:
- name: executable - name: executable
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- ./release/linux/arm/drone-packer --help - ./release/linux/arm/drone-packer --help
@ -299,7 +299,7 @@ platform:
steps: steps:
- name: build-all-binary - name: build-all-binary
pull: always pull: always
image: golang:1.15 image: golang:1.16
commands: commands:
- make release - make release
when: when:

16
pipeline.libsonnet

@ -9,7 +9,7 @@
steps: [ steps: [
{ {
name: 'vet', name: 'vet',
image: 'golang:1.15', image: 'golang:1.16',
pull: 'always', pull: 'always',
commands: [ commands: [
'make vet', 'make vet',
@ -23,7 +23,7 @@
}, },
// { // {
// name: 'lint', // name: 'lint',
// image: 'golang:1.15', // image: 'golang:1.16',
// pull: 'always', // pull: 'always',
// commands: [ // commands: [
// 'make lint', // 'make lint',
@ -37,7 +37,7 @@
// }, // },
{ {
name: 'misspell', name: 'misspell',
image: 'golang:1.15', image: 'golang:1.16',
pull: 'always', pull: 'always',
commands: [ commands: [
'make misspell-check', 'make misspell-check',
@ -51,7 +51,7 @@
}, },
{ {
name: 'test', name: 'test',
image: 'golang:1.15', image: 'golang:1.16',
pull: 'always', pull: 'always',
environment: { environment: {
WEBHOOK_ID: { 'from_secret': 'webhook_id' }, WEBHOOK_ID: { 'from_secret': 'webhook_id' },
@ -95,7 +95,7 @@
steps: [ steps: [
{ {
name: 'build-push', name: 'build-push',
image: 'golang:1.15', image: 'golang:1.16',
pull: 'always', pull: 'always',
environment: { environment: {
CGO_ENABLED: '0', CGO_ENABLED: '0',
@ -111,7 +111,7 @@
}, },
{ {
name: 'build-tag', name: 'build-tag',
image: 'golang:1.15', image: 'golang:1.16',
pull: 'always', pull: 'always',
environment: { environment: {
CGO_ENABLED: '0', CGO_ENABLED: '0',
@ -125,7 +125,7 @@
}, },
{ {
name: 'executable', name: 'executable',
image: 'golang:1.15', image: 'golang:1.16',
pull: 'always', pull: 'always',
commands: [ commands: [
'./release/' + os + '/' + arch + '/' + name + ' --help', './release/' + os + '/' + arch + '/' + name + ' --help',
@ -190,7 +190,7 @@
steps: [ steps: [
{ {
name: 'build-all-binary', name: 'build-all-binary',
image: 'golang:1.15', image: 'golang:1.16',
pull: 'always', pull: 'always',
commands: [ commands: [
'make release' 'make release'

Loading…
Cancel
Save