From: "Alex Bennée" <alex.bennee@linaro.org>
To: Thomas Huth <thuth@redhat.com>
Cc: "Kevin Wolf" <kwolf@redhat.com>,
"Laurent Vivier" <lvivier@redhat.com>,
"Daniel P. Berrangé" <berrange@redhat.com>,
qemu-block@nongnu.org, qemu-devel@nongnu.org,
"Max Reitz" <mreitz@redhat.com>,
"Christian Borntraeger" <borntraeger@de.ibm.com>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>
Subject: Re: [PATCH 6/6] travis.yml: Enable builds on arm64, ppc64le and s390x
Date: Fri, 22 Nov 2019 18:11:26 +0000 [thread overview]
Message-ID: <8736ef93xt.fsf@linaro.org> (raw)
In-Reply-To: <20191119170822.45649-7-thuth@redhat.com>
Thomas Huth <thuth@redhat.com> writes:
> Travis recently added the possibility to test on these architectures,
> too, so let's enable them in our travis.yml file to extend our test
> coverage.
This is good as far as it goes but it would be nice to exercise the
respective TCG backends. If added two commits to:
https://github.com/stsquad/qemu/commits/review/multiarch-testing
which allow for that. I'll know if they worked properly in a hour or two
once the testing has finished.
>
> Unfortunately, the libssh in this Ubuntu version (bionic) is in a pretty
> unusable Frankenstein state and libspice-server-dev is not available here,
> so we can not use the global list of packages to install, but have to
> provide individual package lists instead.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> .travis.yml | 83 +++++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 83 insertions(+)
>
> diff --git a/.travis.yml b/.travis.yml
> index c09b6a0014..cf48ee452c 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -360,6 +360,89 @@ matrix:
> - TEST_CMD="make -j3 check-tcg V=1"
> - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-debug-tcg"
>
> + - arch: arm64
> + addons:
> + apt_packages:
> + - libaio-dev
> + - libattr1-dev
> + - libbrlapi-dev
> + - libcap-dev
> + - libcap-ng-dev
> + - libgcrypt20-dev
> + - libgnutls28-dev
> + - libgtk-3-dev
> + - libiscsi-dev
> + - liblttng-ust-dev
> + - libncurses5-dev
> + - libnfs-dev
> + - libnss3-dev
> + - libpixman-1-dev
> + - libpng-dev
> + - librados-dev
> + - libsdl2-dev
> + - libseccomp-dev
> + - liburcu-dev
> + - libusb-1.0-0-dev
> + - libvdeplug-dev
> + - libvte-2.91-dev
> + env:
> + - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS},x86_64-linux-user"
> +
> + - arch: ppc64le
> + addons:
> + apt_packages:
> + - libaio-dev
> + - libattr1-dev
> + - libbrlapi-dev
> + - libcap-dev
> + - libcap-ng-dev
> + - libgcrypt20-dev
> + - libgnutls28-dev
> + - libgtk-3-dev
> + - libiscsi-dev
> + - liblttng-ust-dev
> + - libncurses5-dev
> + - libnfs-dev
> + - libnss3-dev
> + - libpixman-1-dev
> + - libpng-dev
> + - librados-dev
> + - libsdl2-dev
> + - libseccomp-dev
> + - liburcu-dev
> + - libusb-1.0-0-dev
> + - libvdeplug-dev
> + - libvte-2.91-dev
> + env:
> + - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS},x86_64-linux-user"
> +
> + - arch: s390x
> + addons:
> + apt_packages:
> + - libaio-dev
> + - libattr1-dev
> + - libbrlapi-dev
> + - libcap-dev
> + - libcap-ng-dev
> + - libgcrypt20-dev
> + - libgnutls28-dev
> + - libgtk-3-dev
> + - libiscsi-dev
> + - liblttng-ust-dev
> + - libncurses5-dev
> + - libnfs-dev
> + - libnss3-dev
> + - libpixman-1-dev
> + - libpng-dev
> + - librados-dev
> + - libsdl2-dev
> + - libseccomp-dev
> + - liburcu-dev
> + - libusb-1.0-0-dev
> + - libvdeplug-dev
> + - libvte-2.91-dev
> + env:
> + - CONFIG="--target-list=${MAIN_SOFTMMU_TARGETS},x86_64-linux-user"
>
> # Release builds
> # The make-release script expect a QEMU version, so our tag must start with a 'v'.
--
Alex Bennée
next prev parent reply other threads:[~2019-11-22 18:31 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-19 17:08 [PATCH 0/6] Enable Travis builds on arm64, ppc64le and s390x Thomas Huth
2019-11-19 17:08 ` [PATCH 1/6] iotests: Skip test 060 if it is not possible to create large files Thomas Huth
2019-11-22 12:53 ` Alex Bennée
2019-11-19 17:08 ` [PATCH 2/6] iotests: Skip test 079 " Thomas Huth
2019-11-19 17:29 ` Philippe Mathieu-Daudé
2019-11-19 17:34 ` Thomas Huth
2019-11-19 17:38 ` Philippe Mathieu-Daudé
2019-11-19 17:50 ` Daniel P. Berrangé
2019-11-19 18:32 ` Thomas Huth
2019-11-22 12:57 ` Alex Bennée
2019-11-19 17:08 ` [PATCH 3/6] tests/hd-geo-test: Skip test when images can not be created Thomas Huth
2019-11-19 17:28 ` Philippe Mathieu-Daudé
2019-11-22 16:28 ` Alex Bennée
2019-11-19 17:08 ` [PATCH 4/6] tests/test-util-filemonitor: Skip test on non-x86 Travis containers Thomas Huth
2019-11-19 17:31 ` Philippe Mathieu-Daudé
2019-11-22 16:29 ` Alex Bennée
2019-11-19 17:08 ` [PATCH 5/6] travis.yml: drop 32 bit systems from MAIN_SOFTMMU_TARGETS Thomas Huth
2019-11-19 17:31 ` Philippe Mathieu-Daudé
2019-11-19 17:08 ` [PATCH 6/6] travis.yml: Enable builds on arm64, ppc64le and s390x Thomas Huth
2019-11-22 18:11 ` Alex Bennée [this message]
2019-11-22 23:09 ` [PATCH 0/6] Enable Travis " Alex Bennée
2019-11-25 10:28 ` Alex Bennée
2019-11-27 8:50 ` Thomas Huth
2019-12-04 14:03 ` Thomas Huth
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=8736ef93xt.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=berrange@redhat.com \
--cc=borntraeger@de.ibm.com \
--cc=kwolf@redhat.com \
--cc=lvivier@redhat.com \
--cc=mreitz@redhat.com \
--cc=philmd@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=thuth@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).