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
da98eccc
Commit
da98eccc
authored
Aug 21, 2021
by
Andrew Murray
Browse files
Moved default MB_ML_VER into common_utils
parent
d2a10c47
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
7 deletions
+4
-7
common_utils.sh
common_utils.sh
+3
-0
configure_build.sh
configure_build.sh
+0
-1
library_builders.sh
library_builders.sh
+1
-1
travis_linux_steps.sh
travis_linux_steps.sh
+0
-5
No files found.
common_utils.sh
View file @
da98eccc
...
...
@@ -24,6 +24,9 @@ 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
...
...
configure_build.sh
View file @
da98eccc
...
...
@@ -10,7 +10,6 @@ fi
CONFIGURE_BUILD_SOURCED
=
1
BUILD_PREFIX
=
"
${
BUILD_PREFIX
:-
/usr/local
}
"
MB_ML_VER
=
${
MB_ML_VER
:-
2014
}
# IS_MACOS is defined in common_utils.sh
if
[
-n
"
$IS_MACOS
"
]
;
then
...
...
library_builders.sh
View file @
da98eccc
...
...
@@ -99,7 +99,7 @@ function openblas_get {
# qual could be 64 to get a 64-bit version
local qual=
$2
local prefix=openblas
${
qual
}
-v
$OPENBLAS_VERSION
local manylinux=manylinux
${
MB_ML_VER
:-
2014
}
local manylinux=manylinux
${
MB_ML_VER
}
local fname=
"
$prefix
-
${
manylinux
}
_
${
plat
}
.tar.gz"
local out_fname=
"
${
ARCHIVE_SDIR
}
/
$fname
"
if [ ! -e
"
$out_fname
"
]; then
...
...
travis_linux_steps.sh
View file @
da98eccc
...
...
@@ -11,11 +11,6 @@
# install_run
set
-e
# Default Manylinux version
# Warning: ignored if DOCKER_IMAGE variable is set.
# See build_multilinux function.
MB_ML_VER
=
${
MB_ML_VER
:-
2014
}
# Get our own location on this filesystem
MULTIBUILD_DIR
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
...
...
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