Skip to content

Commit d72be15

Browse files
Revert "[CI] Fix Monolithic Linux Build in Ubuntu 24.04 (llvm#133628)"
This reverts commit 23fb048. This broke the new premerge system as it appears the pip installations within the CI image do not support this option. Buildkite was unaffected.
1 parent d535554 commit d72be15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.ci/monolithic-linux.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ targets="${2}"
5353
lit_args="-v --xunit-xml-output ${BUILD_DIR}/test-results.xml --use-unique-output-file-name --timeout=1200 --time-tests"
5454

5555
echo "--- cmake"
56-
pip install --break-system-packages -q -r "${MONOREPO_ROOT}"/mlir/python/requirements.txt
57-
pip install --break-system-packages -q -r "${MONOREPO_ROOT}"/lldb/test/requirements.txt
58-
pip install --break-system-packages -q -r "${MONOREPO_ROOT}"/.ci/requirements.txt
56+
pip install -q -r "${MONOREPO_ROOT}"/mlir/python/requirements.txt
57+
pip install -q -r "${MONOREPO_ROOT}"/lldb/test/requirements.txt
58+
pip install -q -r "${MONOREPO_ROOT}"/.ci/requirements.txt
5959
cmake -S "${MONOREPO_ROOT}"/llvm -B "${BUILD_DIR}" \
6060
-D LLVM_ENABLE_PROJECTS="${projects}" \
6161
-G Ninja \

0 commit comments

Comments
 (0)