Skip to content

Commit

Permalink
squash! Packaging: Introduce builds for EL 9 for IPU 9 -> 10
Browse files Browse the repository at this point in the history
Partially updated Makefile
  • Loading branch information
pirat89 committed Apr 2, 2024
1 parent 8a52b26 commit 905a922
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down Expand Up @@ -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; \
Expand Down

0 comments on commit 905a922

Please sign in to comment.