1
Some checks failed
ci/woodpecker/pr/lint Pipeline failed
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/test/1 Pipeline failed
ci/woodpecker/pr/test/2 Pipeline failed

This commit is contained in:
Stephan Schnabel 2025-06-18 22:38:57 +02:00
parent e1ebdb3eb6
commit 40bdd6eca6
Signed by: stephan.schnabel
SSH key fingerprint: SHA256:99zuzxNGFb5/5P+E/O7ONU2qhUojUe/D8rIPTW+9Xp0
12 changed files with 366 additions and 306 deletions

View file

@ -1,45 +1,56 @@
when:
instance: ci.kokuwa.io
repo: woodpecker/dockerd
event: [manual, push, pull_request]
branch: main
path: [.woodpecker/build.yaml, .woodpecker/test.yaml, .woodpecker/push.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
services:
- name: dockerd
image: kokuwaio/dockerd:rootless
ports: [2375]
privileged: true
path: [.woodpecker/build.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
steps:
build-linux:
depends_on: [init]
image: kokuwaio/docker-cli
commands:
- docker login
- docker buildx create --platform=linux/amd64,linux/arm64 --driver=docker-container --use
- docker buildx build .
--push
--tag=ci-registry.schnabel.org/kokuwaio/dockerd:$CI_PIPELINE_NUMBER
--platform=linux/amd64,linux/arm64
--cache-from=type=registry,ref=ci-registry.schnabel.org/cache/dockerd:refs_heads_main
--cache-from=type=registry,ref=ci-registry.schnabel.org/cache/dockerd:$CI_COMMIT_SHA
--cache-from=type=registry,ref=ci-registry.schnabel.org/cache/dockerd:${CI_COMMIT_REF//\//_}
--cache-to=type=registry,ref=ci-registry.schnabel.org/cache/dockerd:$CI_COMMIT_SHA,mode=max,compression=zstd
--cache-to=type=registry,ref=ci-registry.schnabel.org/cache/dockerd:${CI_COMMIT_REF//\//_},mode=max,compression=zstd
--label=org.opencontainers.image.title="Docker daemon"
--label=org.opencontainers.image.description="Docker daemon for usage in Woodpecker CI"
--label=org.opencontainers.image.url=$CI_REPO_URL
--label=org.opencontainers.image.documentation=$CI_REPO_URL
--label=org.opencontainers.image.source=$CI_REPO_CLONE_URL
--label=org.opencontainers.image.vendor=kokuwa.io
--label=org.opencontainers.image.licenses=GPL-3.0-or-later
export BUILDX_EXPERIMENTAL=1
export CI_PIPELINE_NUMBER=88
export CI_COMMIT_SHA=123
export CI_COMMIT_REF=refs-heads-main
docker buildx build . \
--push \
--tag=ci-registry.schnabel.org/kokuwaio/dockerd:$CI_PIPELINE_NUMBER \
--platform=linux/amd64,linux/arm64 \
--cache-to=type=registry,ref=ci-registry.schnabel.org/cache/dockerd:${CI_COMMIT_REF//\//},mode=max,compression=zstd
build:
image: kokuwaio/buildctl
settings: &settings
name: registry.kokuwa.io/kokuwaio/dockerd:ci-${CI_PIPELINE_NUMBER}
auth:
registry.kokuwa.io:
username: {from_secret: kokuwa_io_username}
password: {from_secret: kokuwa_io_password}
platform: [linux/amd64, linux/arm64]
annotation:
org.opencontainers.image.title: Docker Daemon WoodpeckerCI Plugin
org.opencontainers.image.description: Docker daemon for usage in WoodpeckerCI.
org.opencontainers.image.url: $CI_REPO_URL
org.opencontainers.image.documentation: $CI_REPO_URL/README.md
org.opencontainers.image.source: $CI_REPO_CLONE_URL
org.opencontainers.image.revision: $CI_COMMIT_SHA
org.opencontainers.image.vendor: kokuwa.io
org.opencontainers.image.licenses: EUPL-1.2
org.opencontainers.image.ref.name: kokuwaio/dockerd
org.opencontainers.image.version: 28.1.1
when:
event: pull_request
push:
image: kokuwaio/buildctl
settings:
<<: *settings
name:
- registry.kokuwa.io/kokuwaio/dockerd:latest
- registry.kokuwa.io/kokuwaio/dockerd:28.1.1
- docker.io/kokuwaio/dockerd:latest
- docker.io/kokuwaio/dockerd:28.1.1
- ghcr.io/kokuwaio/dockerd:latest
- ghcr.io/kokuwaio/dockerd:28.1.1
auth:
"https://index.docker.io/v1/":
username: {from_secret: docker_io_username}
password: {from_secret: docker_io_password}
ghcr.io:
username: {from_secret: ghcr_io_username}
password: {from_secret: ghcr_io_password}
registry.kokuwa.io:
username: {from_secret: kokuwa_io_username}
password: {from_secret: kokuwa_io_password}
when:
event: [manual, push]
branch: main

View file

@ -1,9 +1,9 @@
when:
instance: ci.schnabel.org
repo: kokuwaio/dockerd
event: push
instance: ci.kokuwa.io
repo: woodpecker/dockerd
event: [manual, push]
branch: main
path: [.woodpecker/dockerhub.yaml, README.md, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
path: [.woodpecker/dockerhub.yaml, README.md]
steps:
@ -11,7 +11,7 @@ steps:
image: kokuwaio/dockerhub-metadata
settings:
repository: kokuwaio/dockerd
description-short: Docker daemon for usage in Woodpecker CI.
description-short: Docker daemon for usage in WoodpeckerCI.
categories: [developer-tools, integration-and-delivery]
username: {from_secret: DOCKERHUB_USERNAME}
password: {from_secret: DOCKERHUB_PASSWORD}
username: {from_secret: dockerhub_username}
password: {from_secret: dockerhub_password}

View file

@ -1,5 +1,5 @@
when:
event: [cron, manual, push, pull_request]
event: [manual, push, pull_request]
branch: main
path: [.woodpecker/lint.yaml, renovate.json, "**/*.yaml", "**/*.md", "**/*.sh", "**/Dockerfile"]
@ -23,7 +23,7 @@ steps:
dockerfile:
image: kokuwaio/hadolint
depends_on: []
when: [path: [.woodpecker/lint.yaml, .hadolint.yaml, "**/Dockerfile"]]
when: [path: [.woodpecker/lint.yaml, "**/Dockerfile"]]
shellcheck:
image: kokuwaio/shellcheck

View file

@ -1,24 +1,35 @@
when:
instance: ci.schnabel.org
repo: kokuwaio/dockerd
instance: ci.kokuwa.io
repo: woodpecker/dockerd
event: [manual, push, pull_request]
branch: main
path: [.woodpecker/build.yaml, .woodpecker/test.yaml, .woodpecker/push.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
path: [.woodpecker/build.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
depends_on: [build]
skip_clone: true
matrix:
PLATFORM: [amd64, arm64]
labels:
platform: linux/${PLATFORM}
services:
- name: dockerd
image: ci-registry.schnabel.org/kokuwaio/dockerd:${CI_PIPELINE_NUMBER}
ports: [2375]
privileged: true
steps:
test:
image: kokuwaio/docker-cli
commands: docker info
pr:
image: registry.kokuwa.io/kokuwaio/dockerd:ci-${CI_PIPELINE_NUMBER}
when:
event: pull_request
kokuwa.io: &version
image: registry.kokuwa.io/kokuwaio/dockerd
pull: true
command: dockerd --version
when:
event: [manual, push]
branch: main
docker.io:
image: docker.io/kokuwaio/dockerd
<<: *version
ghcr.io:
image: ghcr.io/kokuwaio/dockerd
<<: *version