Merge pull request 'a9-beta' (#2) from a9-beta into a9

Reviewed-on: #2
This commit is contained in:
eabdullin 2025-05-13 06:06:55 +00:00
commit 80f3e66d49

View File

@ -2,7 +2,7 @@ actions:
- replace: - replace:
- target: "spec" - target: "spec"
find: | find: |
if ping -c 3 -w 20 8.8.8.8 && wget http://libguestfs.org -O /dev/null; then if ping -c 3 -w 20 8.8.8.8 && curl http://libguestfs.org -o /dev/null; then
extra= extra=
else else
mkdir cachedir repo mkdir cachedir repo
@ -20,6 +20,17 @@ actions:
extra=--with-supermin-packager-config=$(pwd)/yum.conf extra=--with-supermin-packager-config=$(pwd)/yum.conf
count: 1 count: 1
- target: "spec"
find: |
# No qemu-kvm on POWER (RHBZ#1946532).
ExcludeArch: %{power64}
replace: |
%if 0%{?almalinux} < 9
# No qemu-kvm on POWER (RHBZ#1946532).
ExcludeArch: %{power64}
%endif
count: 1
- modify_release: - modify_release:
- suffix: ".alma.1" - suffix: ".alma.1"
enabled: true enabled: true
@ -30,3 +41,4 @@ actions:
line: line:
- "Fix build for AlmaLinux" - "Fix build for AlmaLinux"
- "Avoid permission denied for yum/dnf cache" - "Avoid permission denied for yum/dnf cache"
- "Enable building for ppc64le"