From fb96d5171ee4cba7b2cb9cceea755aa4bd51b3c4 Mon Sep 17 00:00:00 2001 From: Aiden Grossman Date: Sat, 5 Apr 2025 07:24:36 +0000 Subject: [PATCH] Reapply "[CI] Fix Monolithic Linux Build in Ubuntu 24.04 (#133628)" This reverts commit d72be157823d41e7eaf457cc37ea99c07431a25c. Now that the container version got bumped, we need to reland this. --- .ci/monolithic-linux.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.ci/monolithic-linux.sh b/.ci/monolithic-linux.sh index 4b6e56b4a4ed..ec7a85bc5f15 100755 --- a/.ci/monolithic-linux.sh +++ b/.ci/monolithic-linux.sh @@ -53,9 +53,9 @@ targets="${2}" lit_args="-v --xunit-xml-output ${BUILD_DIR}/test-results.xml --use-unique-output-file-name --timeout=1200 --time-tests" echo "--- cmake" -pip install -q -r "${MONOREPO_ROOT}"/mlir/python/requirements.txt -pip install -q -r "${MONOREPO_ROOT}"/lldb/test/requirements.txt -pip install -q -r "${MONOREPO_ROOT}"/.ci/requirements.txt +pip install --break-system-packages -q -r "${MONOREPO_ROOT}"/mlir/python/requirements.txt +pip install --break-system-packages -q -r "${MONOREPO_ROOT}"/lldb/test/requirements.txt +pip install --break-system-packages -q -r "${MONOREPO_ROOT}"/.ci/requirements.txt cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \ -D LLVM_ENABLE_PROJECTS="${projects}" \ -G Ninja \