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
cdf4be7f
Commit
cdf4be7f
authored
Oct 12, 2021
by
Matthew Brett
Browse files
Change default test image for 64-bit.
parent
cd3f2e06
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
README.rst
README.rst
+2
-2
travis_linux_steps.sh
travis_linux_steps.sh
+5
-1
No files found.
README.rst
View file @
cdf4be7f
...
...
@@ -270,8 +270,8 @@ Test phase
Specify the version to test with the ``DOCKER_TEST_IMAGE`` environment
variable. The default version is dependent on ``PLAT``:
* ``m
atthewbrett/trusty:
64``, for ``x86_64``
* ``matthewbrett/trusty:32`` for ``i686``
* ``m
ultibuild/focal_x86_
64``, for ``x86_64``
* ``matthewbrett/trusty:32`` for ``i686``
(Yes, an older image for 32-bit)
* ``multibuild/xenial_arm64v8`` for ``aarch64``
* ``multibuild/xenial_ppc64le`` for ``ppc64le``
* ``mutlibuild/xenial_s390x`` for ``s390x``
...
...
travis_linux_steps.sh
View file @
cdf4be7f
...
...
@@ -116,7 +116,11 @@ function install_run {
local
plat
=
${
1
:-${
PLAT
:-
x86_64
}}
if
[
-z
"
$DOCKER_TEST_IMAGE
"
]
;
then
local
bitness
=
$(
[
"
$plat
"
==
i686
]
&&
echo
32
||
echo
64
)
local
docker_image
=
"matthewbrett/trusty:
$bitness
"
if
[
"
$bitness
"
==
"32"
]
;
then
local
docker_image
=
"matthewbrett/trusty:
$bitness
"
else
local
docker_image
=
"multibuild/focal_x86_64"
fi
else
# aarch64 is called arm64v8 in Ubuntu
local
plat_subst
=
$(
[
"
$plat
"
==
aarch64
]
&&
echo
arm64v8
||
echo
$plat
)
...
...
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