f30bef0a3f
- update build tool for kubernetes auth - update build tool to build packages without docker - add woodpecker pre-commit and build jobs
17 lines
433 B
YAML
17 lines
433 B
YAML
when:
|
|
- event: pull_request
|
|
|
|
steps:
|
|
- name: build rpms
|
|
image: git.unkin.net/unkin/almalinux9-rpmbuilder:latest
|
|
commands:
|
|
- mkdir -p /app/dist/
|
|
- ./tools/build build-all --distro almalinux/el9 --native
|
|
backend_options:
|
|
kubernetes:
|
|
serviceAccountName: default
|
|
- name: show rpms
|
|
image: git.unkin.net/unkin/almalinux9-base:latest
|
|
commands:
|
|
- find /app/dist -type f -name "*.rpm"
|