Compare commits
1 Commits
62a4347022
...
bb39f2085b
| Author | SHA1 | Date | |
|---|---|---|---|
| bb39f2085b |
@ -16,10 +16,6 @@ jobs:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Prerequisites
|
||||
run: |
|
||||
dnf install -y uv
|
||||
|
||||
- name: Build Packages
|
||||
run: |
|
||||
make all DISTRO=el/8
|
||||
@ -44,10 +40,6 @@ jobs:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Install Prerequisites
|
||||
run: |
|
||||
dnf install -y uv
|
||||
|
||||
- name: Build Packages
|
||||
run: |
|
||||
make all DISTRO=el/9
|
||||
|
||||
10
Makefile
10
Makefile
@ -7,13 +7,8 @@ DISTRO ?= el/9 # Default to el/9 if not specified
|
||||
PACKAGES := $(shell find $(ROOT_DIR)/rpms -mindepth 1 -maxdepth 1 -type d -exec test -f {}/metadata.yaml \; -print | xargs -n1 basename | sort)
|
||||
|
||||
# Default target to build all packages
|
||||
.PHONY: all list build clean install-deps
|
||||
all: install-deps build-all
|
||||
|
||||
# Install Python dependencies for build tools
|
||||
install-deps:
|
||||
@echo "Installing Python dependencies..."
|
||||
@which uv > /dev/null 2>&1 || (echo "Error: uv not found. Please install uv first." && exit 1)
|
||||
.PHONY: all list build clean
|
||||
all: build-all
|
||||
|
||||
# List all available packages
|
||||
list:
|
||||
@ -80,7 +75,6 @@ help:
|
||||
@echo " clean - Remove build artifacts"
|
||||
@echo " update - Check all packages for GitHub release updates"
|
||||
@echo " update-<pkg> - Check specific package for GitHub release updates"
|
||||
@echo " install-deps - Install required Python dependencies"
|
||||
@echo " help - Show this help message"
|
||||
@echo ""
|
||||
@echo "Examples:"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user