Skip to content
Merged
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
3 changes: 2 additions & 1 deletion travis_linux_steps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function install_run {
local plat=${1:-${PLAT:-x86_64}}
if [ -z "$DOCKER_TEST_IMAGE" ]; then
if [ "$MB_ML_LIBC" == "musllinux" ]; then
local docker_image="multibuild/alpine3.14_$plat"
local docker_image="multibuild/alpine3.15_$plat"
else
local bitness=$([ "$plat" == i686 ] && echo 32 || echo 64)
if [ "$bitness" == "32" ]; then
Expand All @@ -142,6 +142,7 @@ function install_run {
-e CONFIG_PATH="$CONFIG_PATH" \
-e WHEEL_SDIR="$WHEEL_SDIR" \
-e MANYLINUX_URL="$MANYLINUX_URL" \
-e MB_ML_LIBC="$MB_ML_LIBC" \
-e TEST_DEPENDS="$TEST_DEPENDS" \
-v $PWD:/io \
$docker_image /io/$MULTIBUILD_DIR/docker_test_wrap.sh
Expand Down