Files
rpmbuilder/.woodpecker/build-almalinux9.yaml
T
unkinben 58b032966c
Build / build-8 (pull_request) Successful in 12s
Build / build-9 (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:39:19 +11:00

19 lines
486 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
privileged: true
backend_options:
kubernetes:
serviceAccountName: default
- name: show rpms
image: git.unkin.net/unkin/almalinux9-base:latest
commands:
- find /app/dist -type f -name "*.rpm"