From: "Alex Bennée" <alex.bennee@linaro.org>
To: peter.maydell@linaro.org
Cc: "Fam Zheng" <fam@euphon.net>,
"Alex Bennée" <alex.bennee@linaro.org>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
qemu-devel@nongnu.org
Subject: [PULL v3 06/15] travis.yml: Test the release tarball
Date: Fri, 25 Oct 2019 20:37:00 +0100 [thread overview]
Message-ID: <20191025193709.28783-7-alex.bennee@linaro.org> (raw)
In-Reply-To: <20191025193709.28783-1-alex.bennee@linaro.org>
From: Philippe Mathieu-Daudé <philmd@redhat.com>
Add a job to generate the release tarball and build/install few
QEMU targets from it.
Ideally we should build the 'efi' target from the 'roms' directory,
but it is too time consuming.
This job is only triggered when a tag starting with 'v' is pushed,
which is the case with release candidate tags.
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20191007160450.3619-1-philmd@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
diff --git a/.travis.yml b/.travis.yml
index 7e0d4ad2b31..f2b679fe701 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -343,3 +343,26 @@ matrix:
- CONFIG="--target-list=xtensa-softmmu,arm-softmmu,aarch64-softmmu,alpha-softmmu"
- TEST_CMD="make -j3 check-tcg V=1"
- CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
+
+
+ # Release builds
+ # The make-release script expect a QEMU version, so our tag must start with a 'v'.
+ # This is the case when release candidate tags are created.
+ - if: tag IS present AND tag =~ /^v\d+\.\d+(\.\d+)?(-\S*)?$/
+ env:
+ # We want to build from the release tarball
+ - BUILD_DIR="release/build/dir" SRC_DIR="../../.."
+ - BASE_CONFIG="--prefix=$PWD/dist"
+ - CONFIG="--target-list=x86_64-softmmu,aarch64-softmmu,armeb-linux-user,ppc-linux-user"
+ - TEST_CMD="make install -j3"
+ - QEMU_VERSION="${TRAVIS_TAG:1}"
+ - CACHE_NAME="${TRAVIS_BRANCH}-linux-gcc-default"
+ before_script:
+ - command -v ccache && ccache --zero-stats
+ - mkdir -p ${BUILD_DIR} && cd ${BUILD_DIR}
+ script:
+ - make -C ${SRC_DIR} qemu-${QEMU_VERSION}.tar.bz2
+ - ls -l ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2
+ - tar -xf ${SRC_DIR}/qemu-${QEMU_VERSION}.tar.bz2 && cd qemu-${QEMU_VERSION}
+ - ./configure ${BASE_CONFIG} ${CONFIG} || { cat config.log && exit 1; }
+ - make install
--
2.20.1
next prev parent reply other threads:[~2019-10-25 20:23 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-25 19:36 [PULL v3 00/15] testing updates Alex Bennée
2019-10-25 19:36 ` [PULL v3 01/15] travis.yml: reduce scope of the --enable-debug build Alex Bennée
2019-10-25 19:36 ` [PULL v3 02/15] travis.yml: Add libvdeplug-dev to compile-test net/vde.c Alex Bennée
2019-10-25 19:36 ` [PULL v3 03/15] travis.yml: Use libsdl2 instead of libsdl1.2, and install libsdl2-image Alex Bennée
2019-10-25 19:36 ` [PULL v3 04/15] travis.yml: Use newer version of libgnutls and libpng Alex Bennée
2019-10-25 19:36 ` [PULL v3 05/15] travis.yml: Fix the ccache lines Alex Bennée
2019-10-25 19:37 ` Alex Bennée [this message]
2019-10-25 19:37 ` [PULL v3 07/15] travis.yml: bump Xcode 10 to latest dot release Alex Bennée
2019-10-25 19:37 ` [PULL v3 08/15] cirrus.yml: add latest Xcode build target Alex Bennée
2019-10-25 19:37 ` [PULL v3 09/15] tests/vm: Let subclasses disable IPv6 Alex Bennée
2019-10-25 19:37 ` [PULL v3 10/15] tests/vm/netbsd: Disable IPv6 Alex Bennée
2019-10-25 19:37 ` [PULL v3 11/15] travis.yml: cache the clang sanitizer build Alex Bennée
2019-10-25 19:37 ` [PULL v3 12/15] gitlab-ci.yml: Use libvdeplug-dev to compile-test the VDE network backend Alex Bennée
2019-10-25 19:37 ` [PULL v3 13/15] travis.yml: --enable-debug-tcg to check-tcg Alex Bennée
2019-10-25 19:37 ` [PULL v3 14/15] tests/docker: set HOST_ARCH if we don't have ARCH Alex Bennée
2019-10-25 19:37 ` [PULL v3 15/15] tests/docker: update Travis image to a more current version Alex Bennée
2019-10-27 19:39 ` [PULL v3 00/15] testing updates Peter Maydell
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=20191025193709.28783-7-alex.bennee@linaro.org \
--to=alex.bennee@linaro.org \
--cc=fam@euphon.net \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).