Merge pull request #40 from tphoney/use_correct_arm_runner

(fix) use correct arm runner
This commit is contained in:
TP Honey
2023-09-15 16:00:37 +01:00
committed by GitHub
2 changed files with 12 additions and 12 deletions
+11 -11
View File
@@ -9,7 +9,7 @@ pool:
steps: steps:
- name: lint - name: lint
image: golang:1.19 image: golang:1.20
pull: always pull: always
commands: commands:
- go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest - go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest
@@ -19,7 +19,7 @@ steps:
- name: gopath - name: gopath
path: "/go" path: "/go"
- name: test - name: test
image: golang:1.19 image: golang:1.20
commands: commands:
- go test -cover ./... - go test -cover ./...
volumes: volumes:
@@ -46,7 +46,7 @@ pool:
steps: steps:
- name: environment - name: environment
image: golang:1.19 image: golang:1.20
pull: always pull: always
environment: environment:
CGO_ENABLED: '0' CGO_ENABLED: '0'
@@ -54,7 +54,7 @@ steps:
- go version - go version
- go env - go env
- name: build - name: build
image: golang:1.19 image: golang:1.20
environment: environment:
CGO_ENABLED: '0' CGO_ENABLED: '0'
commands: commands:
@@ -80,7 +80,7 @@ trigger:
--- ---
kind: pipeline kind: pipeline
type: docker type: vm
name: linux-arm64 name: linux-arm64
platform: platform:
os: linux os: linux
@@ -90,7 +90,7 @@ pool:
steps: steps:
- name: environment - name: environment
image: golang:1.19 image: golang:1.20
pull: always pull: always
environment: environment:
CGO_ENABLED: '0' CGO_ENABLED: '0'
@@ -98,7 +98,7 @@ steps:
- go version - go version
- go env - go env
- name: build - name: build
image: golang:1.19 image: golang:1.20
environment: environment:
CGO_ENABLED: '0' CGO_ENABLED: '0'
commands: commands:
@@ -134,7 +134,7 @@ pool:
steps: steps:
- name: environment - name: environment
image: golang:1.19 image: golang:1.20
pull: always pull: always
environment: environment:
CGO_ENABLED: '0' CGO_ENABLED: '0'
@@ -142,7 +142,7 @@ steps:
- go version - go version
- go env - go env
- name: build - name: build
image: golang:1.19 image: golang:1.20
environment: environment:
CGO_ENABLED: '0' CGO_ENABLED: '0'
commands: commands:
@@ -185,7 +185,7 @@ pool:
steps: steps:
- name: environment - name: environment
image: golang:1.19 image: golang:1.20
pull: always pull: always
environment: environment:
CGO_ENABLED: '0' CGO_ENABLED: '0'
@@ -193,7 +193,7 @@ steps:
- go version - go version
- go env - go env
- name: build - name: build
image: golang:1.19 image: golang:1.20
environment: environment:
CGO_ENABLED: '0' CGO_ENABLED: '0'
commands: commands:
+1 -1
View File
@@ -1,6 +1,6 @@
module github.com/drone-plugins/drone-download module github.com/drone-plugins/drone-download
go 1.18 go 1.20
require ( require (
github.com/drone-plugins/drone-plugin-lib v0.4.0 github.com/drone-plugins/drone-plugin-lib v0.4.0