.builds: add f39 test

This commit is contained in:
Maxwell G 2023-11-06 04:33:32 +00:00
commit da3f35f848
Signed by: gotmax23
GPG key ID: F79E4E25E8C661F8
2 changed files with 19 additions and 1 deletions

18
.builds/39.yml Normal file
View file

@ -0,0 +1,18 @@
---
# Copyright (C) 2023 Maxwell G <maxwell@gtmx.me>
# SPDX-License-Identifier: GPL-1.0-or-later
# NOTICE: This file is generated from ci.yml.in. Do not edit!
image: fedora/39
packages:
- python3-pytest
- python3-pyyaml
- redhat-rpm-config
- rpm
sources:
- https://git.sr.ht/~gotmax23/forge-srpm-macros
tasks:
- pytest: |
cd forge-srpm-macros
pytest -vv

View file

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