Initial draft of plugin.
This commit is contained in:
parent
a51b159186
commit
aa70d85bee
17 changed files with 950 additions and 0 deletions
31
.woodpecker/test.yaml
Normal file
31
.woodpecker/test.yaml
Normal file
|
@ -0,0 +1,31 @@
|
|||
when:
|
||||
instance: ci.kokuwa.io
|
||||
repo: woodpecker/docker
|
||||
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}-rootless
|
||||
ports: [2375]
|
||||
privileged: true
|
||||
|
||||
steps:
|
||||
|
||||
info:
|
||||
image: registry.kokuwa.io/kokuwaio/docker-cli:ci-${CI_PIPELINE_NUMBER}
|
||||
commands: docker info
|
||||
|
||||
pull:
|
||||
image: registry.kokuwa.io/kokuwaio/docker-cli:ci-${CI_PIPELINE_NUMBER}
|
||||
commands: docker pull bash
|
||||
|
||||
run:
|
||||
image: registry.kokuwa.io/kokuwaio/docker-cli:ci-${CI_PIPELINE_NUMBER}
|
||||
commands: docker run --rm bash uname -a
|
Loading…
Add table
Add a link
Reference in a new issue