From ba57560afd375aed9e6e9d6cfa410bd3f8ed9fce Mon Sep 17 00:00:00 2001 From: Tom Scogland Date: Wed, 30 Oct 2024 18:21:21 -0700 Subject: [PATCH] matrix: add el8 tag and make it test-install problem: we're not hooking up to the el8 container from core properly solution: tag the container after the test, and match the core container with test-install --- src/test/generate-matrix.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/test/generate-matrix.py b/src/test/generate-matrix.py index cac440020..275d7ae4a 100755 --- a/src/test/generate-matrix.py +++ b/src/test/generate-matrix.py @@ -265,13 +265,15 @@ def __str__(self): # RHEL8 clone matrix.add_build( - name="el8", + name="el8 - test-install", image="el8", env=dict( + TEST_INSTALL="t", # this is _required_ because of valgrind's new dependency on python3.11 # which confuses rhel8 cmake's detection logic - PYTHON="/usr/bin/python3.6" + PYTHON="/usr/bin/python3.6", ), + docker_tag=True, ) print(matrix)