1
Some checks failed
ci/woodpecker/pr/lint Pipeline failed
ci/woodpecker/pr/test/1 unknown status
ci/woodpecker/pr/test/2 unknown status
ci/woodpecker/pr/build Pipeline failed

1
This commit is contained in:
Stephan Schnabel 2025-06-19 16:50:32 +02:00
parent 7db99e0fa6
commit f433482dcd
Signed by: stephan.schnabel
SSH key fingerprint: SHA256:99zuzxNGFb5/5P+E/O7ONU2qhUojUe/D8rIPTW+9Xp0
6 changed files with 125 additions and 78 deletions

View file

@ -1,9 +1,8 @@
when:
instance: ci.kokuwa.io
repo: woodpecker/dockerd
event: [manual, push, pull_request]
branch: main
path: [.woodpecker/build.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
event: pull_request
path: [.woodpecker/build.yaml, .woodpecker/test.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
depends_on: [build]
matrix:
@ -11,26 +10,27 @@ matrix:
labels:
platform: linux/${PLATFORM}
services:
- name: dockerd
image: registry.kokuwa.io/kokuwaio/dockerd:ci-${CI_PIPELINE_NUMBER}
ports: [2375]
steps:
pr:
image: registry.kokuwa.io/kokuwaio/dockerd:ci-${CI_PIPELINE_NUMBER}
commands: dockerd --version
when:
event: pull_request
info:
image: kokuwaio/docker-cli
commands: docker info
environment:
DOCKER_HOST: tcp://dockerd:2375
kokuwa.io: &version
image: registry.kokuwa.io/kokuwaio/dockerd
pull: true
commands: dockerd --version
when:
event: [manual, push]
branch: main
pull:
image: kokuwaio/docker-cli
commands: docker pull bash
environment:
DOCKER_HOST: tcp://dockerd:2375
docker.io:
image: docker.io/kokuwaio/dockerd
<<: *version
ghcr.io:
image: ghcr.io/kokuwaio/dockerd
<<: *version
run:
image: kokuwaio/docker-cli
commands: docker run --rm bash uname -a
environment:
DOCKER_HOST: tcp://dockerd:2375