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
6b0ddb52
Commit
6b0ddb52
authored
Jan 24, 2020
by
Matthew Brett
Browse files
Merge branch 'pr/301' into devel
* pr/301: Uncomment code Warn and exit when no supported wheels found
parents
e5e9d189
9ad70ba2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
common_utils.sh
common_utils.sh
+9
-4
No files found.
common_utils.sh
View file @
6b0ddb52
...
...
@@ -45,7 +45,7 @@ function stop_spinner {
if
[
!
-n
"
$MB_SPINNER_PID
"
]
;
then
return
fi
kill
$MB_SPINNER_PID
unset
MB_SPINNER_PID
...
...
@@ -335,10 +335,15 @@ function install_wheel {
pip install
$(
pip_opts
)
$@
$TEST_DEPENDENCY
done <<< "
$TEST_DEPENDS
"
fi
# Install compatible wheel
pip install packaging
pip install
$(
pip_opts
)
$@
\
$(
python
$MULTIBUILD_DIR
/supported_wheels.py
$wheelhouse
/
*
.whl
)
local supported_wheels=
$(
python
$MULTIBUILD_DIR
/supported_wheels.py
$wheelhouse
/
*
.whl
)
if [ -z "
$supported_wheels
" ]; then
echo "
ERROR: no supported wheels found
"
exit 1
fi
# Install compatible wheel
pip install
$(
pip_opts
)
$@
$supported_wheels
}
function install_run {
...
...
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