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
72868479
Unverified
Commit
72868479
authored
Oct 22, 2021
by
John Jones
Browse files
switch to multibuild provided alpine test images because... reasons?
parent
980d9b0e
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
15 deletions
+3
-15
docker_test_wrap.sh
docker_test_wrap.sh
+0
-11
library_builders.sh
library_builders.sh
+1
-1
manylinux_utils.sh
manylinux_utils.sh
+1
-1
travis_linux_steps.sh
travis_linux_steps.sh
+1
-2
No files found.
docker_test_wrap.sh
View file @
72868479
...
...
@@ -2,17 +2,6 @@
# Install and test steps on Linux
set
-e
# shim for python:alpine not having bash
if
[
-f
"/etc/alpine-release"
]
;
then
apk update
apk add bash
fi
if
[
-z
"
$BASH
"
]
;
then
bash
$0
$@
exit
$?
fi
# "python" and "pip" are already on the path as part of the docker
# startup code in choose_python.sh, but the following are required and not
# necessarily already set
...
...
library_builders.sh
View file @
72868479
manylinux_utils.sh
View file @
72868479
travis_linux_steps.sh
View file @
72868479
...
...
@@ -120,7 +120,7 @@ function install_run {
local
plat
=
${
1
:-${
PLAT
:-
x86_64
}}
if
[
-z
"
$DOCKER_TEST_IMAGE
"
]
;
then
if
[
"
$MB_ML_LIBC
"
==
"musllinux"
]
;
then
local
docker_image
=
"
python:
$MB_PYTHON_VERSION
-alpine
"
local
docker_image
=
"
multibuild/alpine3.14_
$plat
"
else
local
bitness
=
$(
[
"
$plat
"
==
i686
]
&&
echo
32
||
echo
64
)
local
docker_image
=
"matthewbrett/trusty:
$bitness
"
...
...
@@ -140,6 +140,5 @@ function install_run {
-e
MANYLINUX_URL
=
"
$MANYLINUX_URL
"
\
-e
TEST_DEPENDS
=
"
$TEST_DEPENDS
"
\
-v
$PWD
:/io
\
--entrypoint
sh
\
$docker_image
/io/
$MULTIBUILD_DIR
/docker_test_wrap.sh
}
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