Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
guocuimi committed Feb 25, 2025
1 parent 6013ca5 commit 03fc479
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions docker/common/install_base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ install_ubuntu() {
jq \
libtool \
unzip \
gdb
gdb \
autoconf

# Cleanup package manager
apt-get autoclean && apt-get clean
Expand All @@ -39,7 +40,8 @@ install_almalinux() {
vim \
jq \
libtool \
unzip
unzip \
autoconf

# Cleanup
yum clean all
Expand Down
3 changes: 2 additions & 1 deletion docker/common/install_cmake.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ command -v pip3 >/dev/null && pip3 uninstall -y cmake
rm -f /usr/local/bin/cmake

path="v${CMAKE_VERSION}"
file="cmake-${CMAKE_VERSION}-linux-x86_64.tar.gz"
ARCH=$(uname -m)
file="cmake-${CMAKE_VERSION}-linux-${ARCH}.tar.gz"

# Download and install specific CMake version in /usr/local
pushd /tmp
Expand Down

0 comments on commit 03fc479

Please sign in to comment.