Skip to content

Commit 916a4b6

Browse files
committed
Remove unrelated changes
1 parent 39d7abb commit 916a4b6

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

components/core/tools/scripts/lib_install/manylinux_2_28/install-all.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#!/usr/bin/env bash
22

3-
set -euo pipefail
3+
set -eu
4+
set -o pipefail
45

56
script_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"
67

components/core/tools/scripts/lib_install/manylinux_2_28/install-prebuilt-packages.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ curl \
4040
dnf install --assumeyes "$task_pkg_path"
4141
rm "$task_pkg_path"
4242

43-
# Install CMake v3.31.x as ANTLR and yaml-cpp do not yet support CMake v4+.
44-
# See also: https://github.com/y-scope/clp/issues/795
45-
if command -v cmake ; then
46-
pipx uninstall cmake
47-
fi
48-
pipx install "cmake~=3.31"
43+
# Downgrade to CMake v3 to work around https://github.com/y-scope/clp/issues/795
44+
pipx uninstall cmake
45+
pipx install cmake~=3.31

0 commit comments

Comments
 (0)