Initial draft of plugin.
Some checks failed
ci/woodpecker/push/dockerhub Pipeline was successful
ci/woodpecker/push/lint Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/test/1 Pipeline failed
ci/woodpecker/push/test/2 Pipeline failed

This commit is contained in:
Stephan Schnabel 2025-06-06 21:53:23 +02:00
parent ea2a997724
commit df631ff808
Signed by: stephan.schnabel
SSH key fingerprint: SHA256:99zuzxNGFb5/5P+E/O7ONU2qhUojUe/D8rIPTW+9Xp0
15 changed files with 772 additions and 0 deletions

37
.woodpecker/test.yaml Normal file
View file

@ -0,0 +1,37 @@
when:
instance: ci.kokuwa.io
repo: woodpecker/buildctl
event: [manual, push, pull_request]
branch: main
path: [.woodpecker/build.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
depends_on: [build]
matrix:
PLATFORM: [amd64, arm64]
labels:
platform: linux/${PLATFORM}
steps:
registry.kokuwa.io/kokuwaio/buildctl:ci-${CI_PIPELINE_NUMBER}:
image: registry.kokuwa.io/kokuwaio/buildctl:ci-${CI_PIPELINE_NUMBER}
pull: true
commands: buildctl --version
when:
event: pull_request
registry.kokuwa.io/kokuwaio/buildctl: &version
image: registry.kokuwa.io/kokuwaio/buildctl:latest
pull: true
commands: buildctl --version
when:
event: [manual, push]
branch: main
docker.io/kokuwaio/buildctl:
image: docker.io/kokuwaio/buildctl:latest
<<: *version
ghcr.io/kokuwaio/buildctl:
image: ghcr.io/kokuwaio/buildctl:latest
<<: *version