Skip to content

Commit

Permalink
Update .drone.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
cnbattle authored Nov 8, 2021
1 parent 5b2c97c commit 9f4422a
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ name: testing
steps:
- name: vet
pull: always
image: golang:1.16
image: golang:1.17
commands:
- make vet
volumes:
Expand All @@ -14,7 +14,7 @@ steps:

- name: lint
pull: always
image: golang:1.16
image: golang:1.17
commands:
- make lint
volumes:
Expand All @@ -23,21 +23,21 @@ steps:

- name: misspell
pull: always
image: golang:1.16
image: golang:1.17
commands:
- make misspell-check
volumes:
- name: gopath
path: /go

- name: test
pull: always
image: golang:1.16
commands:
- make test
volumes:
- name: gopath
path: /go
# - name: test
# pull: always
# image: golang:1.17
# commands:
# - make test
# volumes:
# - name: gopath
# path: /go

volumes:
- name: gopath
Expand All @@ -54,7 +54,7 @@ platform:
steps:
- name: build-all-binary
pull: always
image: golang:1.16
image: golang:1.17
commands:
- make release
when:
Expand Down Expand Up @@ -111,4 +111,4 @@ depends_on:
# - linux-arm
# - release-binary
#
#...
#...

0 comments on commit 9f4422a

Please sign in to comment.