chore(drone): update golang version
This commit is contained in:
parent
b94a538d7b
commit
0adf7b7f1f
24
.drone.yml
24
.drone.yml
|
@ -10,21 +10,24 @@ clone:
|
||||||
|
|
||||||
pipeline:
|
pipeline:
|
||||||
deps:
|
deps:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
|
pull: true
|
||||||
group: golang
|
group: golang
|
||||||
commands:
|
commands:
|
||||||
- make deps
|
- make deps
|
||||||
- make embedmd
|
- make embedmd
|
||||||
|
|
||||||
lint:
|
lint:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
|
pull: true
|
||||||
group: golang
|
group: golang
|
||||||
commands:
|
commands:
|
||||||
- make vet
|
- make vet
|
||||||
- make lint
|
- make lint
|
||||||
|
|
||||||
vendor:
|
vendor:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
|
pull: true
|
||||||
group: golang
|
group: golang
|
||||||
commands:
|
commands:
|
||||||
- make test-vendor
|
- make test-vendor
|
||||||
|
@ -32,42 +35,43 @@ pipeline:
|
||||||
- make fmt-check
|
- make fmt-check
|
||||||
|
|
||||||
build_linux_amd64:
|
build_linux_amd64:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
pull: true
|
pull: true
|
||||||
group: golang
|
group: golang
|
||||||
commands:
|
commands:
|
||||||
- make build_linux_amd64
|
- make build_linux_amd64
|
||||||
|
|
||||||
build_linux_i386:
|
build_linux_i386:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
pull: true
|
pull: true
|
||||||
group: golang
|
group: golang
|
||||||
commands:
|
commands:
|
||||||
- make build_linux_i386
|
- make build_linux_i386
|
||||||
|
|
||||||
build_linux_arm64:
|
build_linux_arm64:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
pull: true
|
pull: true
|
||||||
group: golang
|
group: golang
|
||||||
commands:
|
commands:
|
||||||
- make build_linux_arm64
|
- make build_linux_arm64
|
||||||
|
|
||||||
build_linux_arm:
|
build_linux_arm:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
pull: true
|
pull: true
|
||||||
group: golang
|
group: golang
|
||||||
commands:
|
commands:
|
||||||
- make build_linux_arm
|
- make build_linux_arm
|
||||||
|
|
||||||
coverage:
|
coverage:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
|
pull: true
|
||||||
group: golang
|
group: golang
|
||||||
secrets: [ android_test_token, android_api_key ]
|
secrets: [ android_test_token, android_api_key ]
|
||||||
commands:
|
commands:
|
||||||
- make unit-test-coverage
|
- make unit-test-coverage
|
||||||
|
|
||||||
generate-coverage:
|
generate-coverage:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
- make coverage
|
- make coverage
|
||||||
|
@ -83,7 +87,7 @@ pipeline:
|
||||||
event: [ push, pull_request ]
|
event: [ push, pull_request ]
|
||||||
|
|
||||||
release:
|
release:
|
||||||
image: golang:1.10.1
|
image: golang:1.10
|
||||||
pull: true
|
pull: true
|
||||||
commands:
|
commands:
|
||||||
- make release
|
- make release
|
||||||
|
|
Loading…
Reference in New Issue