From 00103ffdd9093199fc26181d76af3ffb13753777 Mon Sep 17 00:00:00 2001 From: "Mark A. Grondona" Date: Sun, 7 May 2023 07:30:54 -0700 Subject: [PATCH] ci: add Fedora 38 build Problem: There is no CI build that tests with Python 3.11 or GCC 13. Add a Fedora 38 build to ci which has these versions of Python and GCC. --- src/test/generate-matrix.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/test/generate-matrix.py b/src/test/generate-matrix.py index 659c20fc1dd8..c2c8619e9023 100755 --- a/src/test/generate-matrix.py +++ b/src/test/generate-matrix.py @@ -251,6 +251,21 @@ def __str__(self): docker_tag=True, ) +# Fedora 38 +# Note: caliper does not compile on Fedora 38 +matrix.add_build( + name="fedora38 - gcc-13.1,py3.11", + image="fedora38", + args=( + "--prefix=/usr" + " --sysconfdir=/etc" + " --with-systemdsystemunitdir=/etc/systemd/system" + " --localstatedir=/var" + " --with-flux-security" + ), + docker_tag=True, +) + # inception matrix.add_build( name="inception",