ci: update Fedora versions

This commit is contained in:
Maxwell G 2025-05-31 16:37:59 -05:00
commit 0538cc776d
Signed by: gotmax23
GPG key ID: F79E4E25E8C661F8
4 changed files with 6 additions and 6 deletions

View file

@ -4,7 +4,7 @@
# NOTICE: This file is generated from ci.yml.in. Do not edit!
image: fedora/39
image: fedora/41
packages:
- python3-pytest
- python3-pyyaml

View file

@ -4,7 +4,7 @@
# NOTICE: This file is generated from ci.yml.in. Do not edit!
image: fedora/40
image: fedora/42
packages:
- python3-pytest
- python3-pyyaml

View file

@ -17,9 +17,9 @@ tasks:
cd forge-srpm-macros
if [ "$(rpm -E %{?rhel})" = "9" ]; then
sudo dnf install -y epel-rpm-macros
make epel-build
make epel9-build
export \
MACRO_DIR="$(pwd)/epel/rpm/macros.d" \
MACRO_LUA_DIR="$(pwd)/epel/rpm/lua"
MACRO_DIR="$(pwd)/epel9/rpm/macros.d" \
MACRO_LUA_DIR="$(pwd)/epel9/rpm/lua"
fi
pytest -vv

View file

@ -4,7 +4,7 @@
set -euo pipefail
for i in rockylinux/9 fedora/39 fedora/40; do
for i in rockylinux/9 fedora/41 fedora/42; do
file=".builds/$(echo $i | cut -d/ -f2).yml"
sed "s|@@IMAGE@@|$i|" ci.yml.in >$file
done