Files
rpmbuilder/.woodpecker/build-almalinux9.yaml
T
unkinben e1862154cc
Build / build-9 (pull_request) Successful in 11s
Build / build-8 (pull_request) Successful in 13s
feat: migrate to woodpeckerci
- update build tool for kubernetes auth
- update build tool to build packages without docker (native + buildah)
- add woodpecker pre-commit and build jobs
2026-03-07 15:36:33 +11:00

22 lines
555 B
YAML

when:
- event: pull_request
steps:
- name: build rpms
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
commands:
- mkdir -p /app/dist/
- dnf install buildah -y
- ./tools/build build-all --distro almalinux/el9 --buildah
environment:
BUILDAH_ISOLATION: chroot
volumes:
- /dev/fuse:/dev/fuse
backend_options:
kubernetes:
serviceAccountName: default
- name: show rpms
image: git.unkin.net/unkin/almalinux9-base:latest
commands:
- find /app/dist -type f -name "*.rpm"