[CI] Changed routine
All checks were successful
ci/woodpecker/push/0-pre Pipeline was successful
ci/woodpecker/push/10-build-latest Pipeline was successful

This commit is contained in:
Phil 2025-04-05 20:18:33 +02:00
parent d5e006d914
commit 9932cdcba2
Signed by: Phil
GPG key ID: 350C8B7C4EF5DED4
2 changed files with 5 additions and 9 deletions

View file

@ -8,8 +8,7 @@ steps:
- go vet $(go list ./... | grep -v /vendor/)
- go test -race $(go list ./... | grep -v /vendor/)
when:
- event: [push, pull_request]
branch: main, develop
- event: [push, pull_request, cron]
- name: check-sec
image: golang
@ -18,5 +17,4 @@ steps:
- go get -v -d .
- gosec ./...
when:
- event: [push, pull_request]
branch: main, develop
- event: [push, pull_request, cron]

View file

@ -4,6 +4,9 @@ steps:
commands:
- export CI_COMMIT_SHORT_SHA=${CI_COMMIT_SHA:0:10}
- go build -ldflags="-X main.CommitSHA=${CI_COMMIT_SHORT_SHA}" -o linux-amd64 .
when:
- event: [push, cron]
branch: [main, develop]
- name: build-and-push-docker
image: woodpeckerci/plugin-docker-buildx:5.2.2
@ -34,10 +37,5 @@ services:
when:
- event: [push, cron]
volumes:
gomod-cache:
temp: {}
depends_on:
- 0-pre