Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
fengzch-das
multibuild
Commits
9be57a53
Unverified
Commit
9be57a53
authored
Mar 23, 2022
by
Matti Picus
Committed by
GitHub
Mar 23, 2022
Browse files
Merge pull request #463 from radarhere/musllinux
Set relevant MB_ML_VER default for musllinux
parents
31201ecb
997706e0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
common_utils.sh
common_utils.sh
+4
-3
No files found.
common_utils.sh
View file @
9be57a53
...
...
@@ -24,9 +24,6 @@ GET_PIP_URL=https://bootstrap.pypa.io/get-pip.py
# with, so it is passed in when calling "docker run" for tests.
UNICODE_WIDTH
=
${
UNICODE_WIDTH
:-
32
}
# Default Manylinux version
MB_ML_VER
=
${
MB_ML_VER
:-
2014
}
if
[
$(
uname
)
==
"Darwin"
]
;
then
IS_MACOS
=
1
;
IS_OSX
=
1
;
else
...
...
@@ -37,6 +34,10 @@ fi
if
[
"
$MB_ML_LIBC
"
==
"musllinux"
]
;
then
IS_ALPINE
=
1
;
MB_ML_VER
=
${
MB_ML_VER
:-
"_1_1"
}
else
# Default Manylinux version
MB_ML_VER
=
${
MB_ML_VER
:-
2014
}
fi
# Work round bug in travis xcode image described at
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment