Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions configure_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,12 @@ else
# centos based distro
yum install -y libtool wget
elif [ "${MB_PYTHON_VERSION:0:4}" == "pypy" ]; then
# centos based distro
yum install -y wget
if [ -n "$IS_ALPINE" ]; then
apk add wget
else
# centos based distro
yum install -y wget
fi
fi
fi

Expand Down
2 changes: 1 addition & 1 deletion library_builders.sh
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function get_modern_cmake {
if [ -n "$IS_MACOS" ]; then
brew install cmake > /dev/null
elif [ -n "$IS_ALPINE" ]; then
apk add cmake
apk add cmake > /dev/null
elif [[ $MB_ML_VER == "_2_24" ]]; then
# debian:9 based distro
apt-get install -y cmake
Expand Down