refactor: modernise RPM builder with Python tooling
Build / build-8 (pull_request) Failing after 29s
Build / build-9 (pull_request) Failing after 1m25s

- Replace Makefile version/release file system with metadata.yaml only
- Add Python build automation (./tools/build) with Gitea API integration
- Add GitHub release updater (./tools/update-gh) for version management
- Centralize Dockerfiles into single parameterized Dockerfile
- Remove 54+ individual package Dockerfiles and version directories
- Update Makefile to use new Python tooling
- Add GITEA_API_TOKEN validation to prevent duplicate builds
- Support both explicit version/release args and metadata.yaml reading
This commit is contained in:
2025-11-29 17:48:32 +11:00
parent 8d1aa34f0f
commit 62a4347022
119 changed files with 1296 additions and 1063 deletions
+10 -2
View File
@@ -16,9 +16,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Prerequisites
run: |
dnf install -y uv
- name: Build Packages
run: |
make all
make all DISTRO=el/8
- name: Show RPMs
run: |
@@ -40,9 +44,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Prerequisites
run: |
dnf install -y uv
- name: Build Packages
run: |
make all
make all DISTRO=el/9
- name: Show RPMs
run: |