ci: remove Fedora 38 builds

This commit is contained in:
Maxwell G 2024-08-13 17:00:47 -05:00
commit 5b88e9a3d7
Signed by: gotmax23
GPG key ID: F79E4E25E8C661F8
4 changed files with 5 additions and 2 deletions

View file

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

View file

@ -4,7 +4,7 @@
# NOTICE: This file is generated from ci.yml.in. Do not edit!
image: fedora/38
image: fedora/40
packages:
- python3-pytest
- python3-pyyaml
@ -16,6 +16,7 @@ tasks:
- pytest: |
cd forge-srpm-macros
if [ "$(rpm -E %{?rhel})" = "9" ]; then
sudo dnf install -y epel-rpm-macros
make epel9-build
export \
MACRO_DIR="$(pwd)/epel9/rpm/macros.d" \

View file

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

View file

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