From 905a922b20f9fef18c8df0ace33b023403c7708d Mon Sep 17 00:00:00 2001 From: Petr Stodulka Date: Tue, 2 Apr 2024 19:49:56 +0200 Subject: [PATCH] squash! Packaging: Introduce builds for EL 9 for IPU 9 -> 10 Partially updated Makefile --- Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0de2a86a90..dc18e6472e 100644 --- a/Makefile +++ b/Makefile @@ -389,11 +389,14 @@ _test_container_ipu: el8toel9) \ export REPOSITORIES="common,el8toel9"; \ ;; \ + el9toel10) \ + export REPOSITORIES="common,el9toel10"; \ + ;; \ "") \ echo "TEST_CONT_IPU must be set"; exit 1; \ ;; \ *) \ - echo "Only supported TEST_CONT_IPUs are el7toel8, el8toel9"; exit 1; \ + echo "Only supported TEST_CONT_IPUs are el7toel8, el8toel9, el9toel10"; exit 1; \ ;; \ esac && \ $(_CONTAINER_TOOL) exec -w /repocopy $$_CONT_NAME make clean && \ @@ -449,6 +452,10 @@ test_container: ;; \ python3.9) \ TEST_CONT_IPU=el8toel9 $(MAKE) _test_container_ipu; \ + TEST_CONT_IPU=el9toel10 $(MAKE) _test_container_ipu; \ + ;; \ + python3.12) \ + TEST_CONT_IPU=el9toel10 $(MAKE) _test_container_ipu; \ ;; \ *) \ TEST_CONT_IPU=el8toel9 $(MAKE) _test_container_ipu; \