docker/.woodpecker/test.yaml
Stephan Schnabel ee0ff67872
Some checks failed
ci/woodpecker/pr/lint Pipeline was successful
ci/woodpecker/pr/build Pipeline was successful
ci/woodpecker/pr/test/2 Pipeline failed
ci/woodpecker/pr/test/1 Pipeline failed
1
1
2025-06-19 17:17:33 +02:00

37 lines
815 B
YAML

when:
instance: ci.kokuwa.io
repo: woodpecker/dockerd
event: pull_request
path: [.woodpecker/build.yaml, .woodpecker/test.yaml, Dockerfile, Dockerfile.dockerignore, entrypoint.sh]
depends_on: [build]
matrix:
PLATFORM: [amd64, arm64]
labels:
platform: linux/${PLATFORM}
services:
- name: dockerd
image: registry.kokuwa.io/kokuwaio/dockerd:ci-${CI_PIPELINE_NUMBER}
ports: [2375]
privileged: true
steps:
info:
image: kokuwaio/docker-cli
commands: docker info
environment:
DOCKER_HOST: tcp://dockerd:2375
pull:
image: kokuwaio/docker-cli
commands: docker pull bash
environment:
DOCKER_HOST: tcp://dockerd:2375
run:
image: kokuwaio/docker-cli
commands: docker run --rm bash uname -a
environment:
DOCKER_HOST: tcp://dockerd:2375