b6dd1949ec
Build / build-8 (pull_request) Successful in 10s
Build / build-9 (pull_request) Successful in 11s
ci/woodpecker/pr/pre-commit Pipeline was successful
ci/woodpecker/pr/build-almalinux9 Pipeline was successful
ci/woodpecker/pr/build-almalinux8 Pipeline was successful
- update build tool for kubernetes auth - update build tool to build packages without docker (native + buildah) - add woodpecker pre-commit and build jobs
21 lines
527 B
YAML
21 lines
527 B
YAML
when:
|
|
- event: pull_request
|
|
|
|
steps:
|
|
- name: build rpms
|
|
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
commands:
|
|
- mkdir -p /woodpecker/rpms
|
|
- ln -s /woodpecker/rpms /workspace
|
|
- 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 / -type f -name "*.rpm"
|