restructure woodpecker pipelines
All checks were successful
ci/woodpecker/push/rootless Pipeline was successful
ci/woodpecker/push/root Pipeline was successful

This commit is contained in:
Aaron Riedel 2025-03-16 12:28:15 +01:00
parent 25b3e875b0
commit cea2f4b13f
Signed by: aaron
GPG key ID: 643004654D40D577
4 changed files with 61 additions and 61 deletions

View file

@ -1,61 +0,0 @@
steps:
- name: docker
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/ansible-lint
tags:
- latest
- ${CI_PIPELINE_NUMBER}
platforms:
- linux/arm64
- linux/amd64
when:
- branch: main
event: [push, manual]
- name: docker-root
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
dockerfile: Dockerfile-root
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/ansible-lint
tags:
- root
- root-${CI_PIPELINE_NUMBER}
platforms:
- linux/arm64
- linux/amd64
when:
- branch: main
event: [push, manual]
- name: docker-build
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/ansible-lint
tags: latest
platforms:
- linux/arm64
- linux/amd64
dry_run: true
when:
- branch:
exclude: main
event: [push, manual]

20
.woodpecker/dry-run.yaml Normal file
View file

@ -0,0 +1,20 @@
steps:
- name: docker-build
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/ansible-lint
tags: latest
platforms:
- linux/arm64
- linux/amd64
dry_run: true
when:
- branch:
exclude: main
event: [push, manual]

21
.woodpecker/root.yaml Normal file
View file

@ -0,0 +1,21 @@
steps:
- name: docker-root
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
dockerfile: Dockerfile-root
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/ansible-lint
tags:
- root
- root-${CI_PIPELINE_NUMBER}
platforms:
- linux/arm64
- linux/amd64
when:
- branch: main
event: [push, manual]

20
.woodpecker/rootless.yaml Normal file
View file

@ -0,0 +1,20 @@
steps:
- name: docker
image: woodpeckerci/plugin-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/ansible-lint
tags:
- latest
- ${CI_PIPELINE_NUMBER}
platforms:
- linux/arm64
- linux/amd64
when:
- branch: main
event: [push, manual]