arch: teuthology must use aarch64, not arm64

teuthology / gitbuilder / ansible_architecture arch is

   dpkg-architecture --query DEB_HOST_GNU_CPU (x86_64 and aarch64)

deb package Architectures: (conf/distributions) is

   dpkg-architecture --query DEB_HOST_GNU_ARCH (amd64 and arm64)

Signed-off-by: Loic Dachary <loic@dachary.org>
This commit is contained in:
Loic Dachary 2016-04-05 10:39:55 +02:00
parent 42836aaf2f
commit 5ab482e82c
4 changed files with 3 additions and 3 deletions

1
archs/aarch64.yaml Normal file
View File

@ -0,0 +1 @@
arch: aarch64

View File

@ -1 +0,0 @@
arch: arm64

View File

@ -1,3 +1,3 @@
os_type: ubuntu
os_version: "14.04"
arch: arm64
arch: aarch64

View File

@ -53,7 +53,7 @@ function flavor2configure() {
eval $(dpkg-architecture)
if test $flavor = notcmalloc || test $DEB_BUILD_ARCH = arm64 ; then
if test $flavor = notcmalloc || test "$DEB_HOST_GNU_CPU" = aarch64 ; then
echo --without-tcmalloc --without-cryptopp
fi
}