qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: "Alex Bennée" <alex.bennee@linaro.org>, qemu-devel@nongnu.org
Cc: fam@euphon.net, berrange@redhat.com, stefanb@linux.vnet.ibm.com,
	Stefan Weil <sw@weilnetz.de>,
	richard.henderson@linaro.org, f4bug@amsat.org, cota@braap.org,
	stefanha@redhat.com, pbonzini@redhat.com,
	marcandre.lureau@redhat.com, aurelien@aurel32.net
Subject: Re: [PATCH v1 01/16] configure: allow disable of cross compilation containers
Date: Mon, 16 Dec 2019 19:59:22 +0100	[thread overview]
Message-ID: <d64334fe-9e5a-1d90-2005-7bd59eac3cc6@redhat.com> (raw)
In-Reply-To: <20191216110732.24027-2-alex.bennee@linaro.org>

On 12/16/19 12:07 PM, Alex Bennée wrote:
> Our docker infrastructure isn't quite as multiarch as we would wish so
> lets allow the user to disable it if they want. This will allow us to
> use still run check-tcg on non-x86 CI setups.
> 
> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
> Reviewed-by: Stefan Weil <sw@weilnetz.de>
> ---
>   configure              | 8 +++++++-
>   tests/tcg/configure.sh | 6 ++++--
>   2 files changed, 11 insertions(+), 3 deletions(-)
> 
> diff --git a/configure b/configure
> index 2c72e04d23f..419e1554978 100755
> --- a/configure
> +++ b/configure
> @@ -302,6 +302,7 @@ audio_win_int=""
>   libs_qga=""
>   debug_info="yes"
>   stack_protector=""
> +use_containers="yes"
>   
>   if test -e "$source_path/.git"
>   then
> @@ -1539,6 +1540,10 @@ for opt do
>     ;;
>     --disable-plugins) plugins="no"
>     ;;
> +  --enable-containers) use_containers="yes"
> +  ;;
> +  --disable-containers) use_containers="no"
> +  ;;
>     *)
>         echo "ERROR: unknown option $opt"
>         echo "Try '$0 --help' for more information"
> @@ -1722,6 +1727,7 @@ Advanced options (experts only):
>                              track the maximum stack usage of stacks created by qemu_alloc_stack
>     --enable-plugins
>                              enable plugins via shared library loading
> +  --disable-containers     don't use containers for cross-building

Maybe we can "(default enabled if detected)" or "(... if docker or 
podman available)".

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>

>   
>   Optional features, enabled with --enable-FEATURE and
>   disabled with --disable-FEATURE, default is enabled if available:
> @@ -8023,7 +8029,7 @@ done
>   (for i in $cross_cc_vars; do
>     export $i
>   done
> -export target_list source_path
> +export target_list source_path use_containers
>   $source_path/tests/tcg/configure.sh)
>   
>   # temporary config to build submodules
> diff --git a/tests/tcg/configure.sh b/tests/tcg/configure.sh
> index 6c4a471aeae..210e68396f2 100755
> --- a/tests/tcg/configure.sh
> +++ b/tests/tcg/configure.sh
> @@ -36,8 +36,10 @@ TMPC="${TMPDIR1}/qemu-conf.c"
>   TMPE="${TMPDIR1}/qemu-conf.exe"
>   
>   container="no"
> -if has "docker" || has "podman"; then
> -  container=$($python $source_path/tests/docker/docker.py probe)
> +if test $use_containers = "yes"; then
> +    if has "docker" || has "podman"; then
> +        container=$($python $source_path/tests/docker/docker.py probe)
> +    fi
>   fi
>   
>   # cross compilers defaults, can be overridden with --cross-cc-ARCH
> 



  reply	other threads:[~2019-12-16 19:00 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-12-16 11:07 [PATCH v1 00/16] testing and logging changes for master Alex Bennée
2019-12-16 11:07 ` [PATCH v1 01/16] configure: allow disable of cross compilation containers Alex Bennée
2019-12-16 18:59   ` Philippe Mathieu-Daudé [this message]
2019-12-18 18:17   ` Richard Henderson
2019-12-16 11:07 ` [PATCH v1 02/16] tests/vm: Allow to set qemu-img path Alex Bennée
2019-12-16 11:07 ` [PATCH v1 03/16] travis.yml: Run tcg tests with tci Alex Bennée
2019-12-17 15:35   ` Richard Henderson
2019-12-16 11:07 ` [PATCH v1 04/16] iotests: Provide a function for checking the creation of huge files Alex Bennée
2019-12-16 11:07 ` [PATCH v1 05/16] iotests: Skip test 060 if it is not possible to create large files Alex Bennée
2019-12-16 11:07 ` [PATCH v1 06/16] iotests: Skip test 079 " Alex Bennée
2019-12-16 19:00   ` Philippe Mathieu-Daudé
2019-12-16 11:07 ` [PATCH v1 07/16] tests/hd-geo-test: Skip test when images can not be created Alex Bennée
2019-12-16 11:07 ` [PATCH v1 08/16] tests/test-util-filemonitor: Skip test on non-x86 Travis containers Alex Bennée
2019-12-16 11:07 ` [PATCH v1 09/16] travis.yml: Enable builds on arm64, ppc64le and s390x Alex Bennée
2019-12-16 11:07 ` [PATCH v1 10/16] ci: build out-of-tree Alex Bennée
2019-12-16 11:21   ` Li-Wen Hsu
2019-12-16 11:07 ` [PATCH v1 11/16] Fix double free issue in qemu_set_log_filename() Alex Bennée
2019-12-16 11:07 ` [PATCH v1 12/16] Cleaned up flow of code in qemu_set_log(), to simplify and clarify Alex Bennée
2019-12-16 11:07 ` [PATCH v1 13/16] Add a mutex to guarantee single writer to qemu_logfile handle Alex Bennée
2019-12-16 11:07 ` [PATCH v1 14/16] qemu_log_lock/unlock now preserves the " Alex Bennée
2019-12-16 11:07 ` [PATCH v1 15/16] Add use of RCU for qemu_logfile Alex Bennée
2019-12-16 11:07 ` [PATCH v1 16/16] Added tests for close and change of logfile Alex Bennée

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=d64334fe-9e5a-1d90-2005-7bd59eac3cc6@redhat.com \
    --to=philmd@redhat.com \
    --cc=alex.bennee@linaro.org \
    --cc=aurelien@aurel32.net \
    --cc=berrange@redhat.com \
    --cc=cota@braap.org \
    --cc=f4bug@amsat.org \
    --cc=fam@euphon.net \
    --cc=marcandre.lureau@redhat.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=stefanb@linux.vnet.ibm.com \
    --cc=stefanha@redhat.com \
    --cc=sw@weilnetz.de \
    /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).