Some checks failed
ci/woodpecker/pr/0-pre Pipeline was successful
ci/woodpecker/pr/1-build-check-binary/1 Pipeline was successful
ci/woodpecker/pr/1-build-check-binary/3 Pipeline was successful
ci/woodpecker/pr/1-build-check-binary/2 Pipeline was successful
ci/woodpecker/pr/1-build-check-binary/4 Pipeline was successful
ci/woodpecker/pr/1-build-check-docker/1 Pipeline failed
ci/woodpecker/pr/1-build-check-docker/2 Pipeline failed
24 lines
No EOL
451 B
YAML
24 lines
No EOL
451 B
YAML
matrix:
|
|
GO_GOOS:
|
|
- linux
|
|
GO_GOARCH:
|
|
- amd64
|
|
- arm64
|
|
|
|
steps:
|
|
- name: test/build-docker/${GO_GOOS}-${GO_GOARCH}
|
|
image: woodpeckerci/plugin-docker-buildx:5.2.2
|
|
settings:
|
|
platforms: ${GO_GOOS}/${GO_GOARCH}
|
|
dry-run: true
|
|
purge: true
|
|
build_args:
|
|
- I_PACKAGE="git.hackmi.ch/Phil/goshorly/utils"
|
|
|
|
when:
|
|
- event: [push, cron]
|
|
branch: [main, develop]
|
|
- event: pull_request
|
|
|
|
depends_on:
|
|
- 0-pre |