Skip to content

Commit b92e3c7

Browse files
authored
Merge pull request #2 from radarhere/musllinux
Correct MB_ML_LIBC use
2 parents 1a7b18d + af4efea commit b92e3c7

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/multibuild.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
MACOSX_DEPLOYMENT_TARGET: 10.9
5757
MB_PYTHON_VERSION: ${{ matrix.python-version }}
5858
TRAVIS_PYTHON_VERSION: ${{ matrix.python-version }}
59+
MB_ML_LIBC: ${{ matrix.MB_ML_LIBC }}
5960
MB_ML_VER: ${{ matrix.MB_ML_VER }}
6061
INTERFACE64: ${{ matrix.INTERFACE64 }}
6162
BUILD_DIR: ${{ github.workspace }}

travis-ci/build_steps.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ function build_lib {
4848
return
4949
fi
5050
# Manylinux wrapper
51-
local docker_image=quay.io/pypa/manylinux${manylinux}_${plat}
51+
local libc=${MB_ML_LIBC:-manylinux}
52+
local docker_image=quay.io/pypa/${libc}${manylinux}_${plat}
5253
docker pull $docker_image
5354
# Docker sources this script, and runs `do_build_lib`
5455
docker run --rm \

0 commit comments

Comments
 (0)