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
f55d6fd8
Commit
f55d6fd8
authored
Nov 14, 2019
by
mattip
Browse files
add aarch64 to allowed platforms
parent
a9c60020
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
tests/test_common_utils.sh
tests/test_common_utils.sh
+5
-2
No files found.
tests/test_common_utils.sh
View file @
f55d6fd8
...
@@ -86,8 +86,11 @@ actual="$(set -e; suppress bad_mid_cmd)"
...
@@ -86,8 +86,11 @@ actual="$(set -e; suppress bad_mid_cmd)"
# Reset options
# Reset options
set_opts
$ORIG_OPTS
set_opts
$ORIG_OPTS
# On Linux docker containers in travis, can only be x86_64 or i686
# On Linux docker containers in travis, can be x86_64, i686, or aarch64
[
"
$(
get_platform
)
"
==
x86_64
]
||
[
"
$(
get_platform
)
"
==
i686
]
||
exit
1
[
"
$(
get_platform
)
"
==
x86_64
]
||
\
[
"
$(
get_platform
)
"
==
i686
]
||
\
[
"
$(
get_platform
)
"
==
aarch64
]
||
\
exit
1
# Crudest possible check for get_distutils_platform
# Crudest possible check for get_distutils_platform
expected
=
$(
python
-c
"import distutils.util as du; print(du.get_platform())"
)
expected
=
$(
python
-c
"import distutils.util as du; print(du.get_platform())"
)
...
...
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