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
a905f412
"vscode:/vscode.git/clone" did not exist on "e2696ece051bc73e8c85fdf4d941704ee38817fd"
Commit
a905f412
authored
Jul 06, 2020
by
Andrew Murray
Browse files
Skip building xz on manylinux
parent
e72d0a58
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
docker_build_wrap.sh
docker_build_wrap.sh
+1
-1
manylinux_utils.sh
manylinux_utils.sh
+4
-0
No files found.
docker_build_wrap.sh
View file @
a905f412
...
...
@@ -23,10 +23,10 @@ ENV_VARS_PATH=${ENV_VARS_PATH:-env_vars.sh}
# Always pull in common and library builder utils
MULTIBUILD_DIR
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
# These routines also source common_utils.sh
source
$MULTIBUILD_DIR
/manylinux_utils.sh
if
[
-r
"
$ENV_VARS_PATH
"
]
;
then
source
"
$ENV_VARS_PATH
"
;
fi
source
$MULTIBUILD_DIR
/configure_build.sh
source
$MULTIBUILD_DIR
/library_builders.sh
source
$MULTIBUILD_DIR
/manylinux_utils.sh
if
[
"
$USE_CCACHE
"
==
"1"
]
;
then
activate_ccache
...
...
manylinux_utils.sh
View file @
a905f412
...
...
@@ -4,6 +4,10 @@
MULTIBUILD_DIR
=
$(
dirname
"
${
BASH_SOURCE
[0]
}
"
)
source
$MULTIBUILD_DIR
/common_utils.sh
function
build_xz
{
echo
"Skip building xz"
}
function
get_platform
{
# Report platform as given by uname
python
-c
'import platform; print(platform.uname()[4])'
...
...
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