Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ pool:
steps:
- name: vet
pull: always
image: golang:1.19
image: golang:1.25
commands:
- go vet ./...
environment:
GO111MODULE: on

- name: test
pull: always
image: golang:1.19-alpine
image: golang:1.25-alpine
commands:
- apk --no-cache add -U python3 python3-dev git gcc libc-dev libffi-dev openssl-dev py3-pip
- pip3 install --no-cache-dir --upgrade pip setuptools wheel six twine
Expand Down Expand Up @@ -66,7 +66,7 @@ pool:
steps:
- name: build-push
pull: always
image: golang:1.19
image: golang:1.25
commands:
- 'go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-pypi'
environment:
Expand All @@ -79,7 +79,7 @@ steps:

- name: build-tag
pull: always
image: golang:1.19
image: golang:1.25
commands:
- 'go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/amd64/drone-pypi'
environment:
Expand All @@ -91,7 +91,7 @@ steps:

- name: executable
pull: always
image: golang:1.19
image: golang:1.25
commands:
- ./release/linux/amd64/drone-pypi --help

Expand Down Expand Up @@ -150,7 +150,7 @@ platform:
steps:
- name: build-push
pull: always
image: golang:1.19
image: golang:1.25
commands:
- 'go build -v -ldflags "-X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-pypi'
environment:
Expand All @@ -163,7 +163,7 @@ steps:

- name: build-tag
pull: always
image: golang:1.19
image: golang:1.25
commands:
- 'go build -v -ldflags "-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}" -a -o release/linux/arm64/drone-pypi'
environment:
Expand All @@ -175,7 +175,7 @@ steps:

- name: executable
pull: always
image: golang:1.19
image: golang:1.25
commands:
- ./release/linux/arm64/drone-pypi --help

Expand Down