* [Qemu-devel] [PATCH] travis: display config.log when configure fails
@ 2018-06-12 8:28 Daniel P. Berrangé
2018-06-12 8:43 ` Fam Zheng
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Daniel P. Berrangé @ 2018-06-12 8:28 UTC (permalink / raw)
To: qemu-devel
Cc: Fam Zheng, Philippe Mathieu-Daudé, Alex Bennée,
Daniel P. Berrangé
When configure fails in CI systems we must be able to see the contents
of the config.log file to diagnose the root cause.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
.travis.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.travis.yml b/.travis.yml
index 814be151f4..fc9a1fe8a8 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -69,7 +69,7 @@ before_install:
- wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ
- git submodule update --init --recursive
before_script:
- - ./configure ${CONFIG}
+ - ./configure ${CONFIG} || (cat config.log && exit 1)
script:
- make ${MAKEFLAGS} && ${TEST_CMD}
matrix:
@@ -151,4 +151,4 @@ matrix:
- CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
- TEST_CMD=""
before_script:
- - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || cat config.log
+ - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || (cat config.log && exit 1)
--
2.17.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] travis: display config.log when configure fails
2018-06-12 8:28 [Qemu-devel] [PATCH] travis: display config.log when configure fails Daniel P. Berrangé
@ 2018-06-12 8:43 ` Fam Zheng
2018-06-12 12:15 ` Eric Blake
2018-06-13 12:04 ` Alex Bennée
2 siblings, 0 replies; 5+ messages in thread
From: Fam Zheng @ 2018-06-12 8:43 UTC (permalink / raw)
To: Daniel P. Berrangé
Cc: qemu-devel, Philippe Mathieu-Daudé, Alex Bennée
On Tue, 06/12 09:28, Daniel P. Berrangé wrote:
> When configure fails in CI systems we must be able to see the contents
> of the config.log file to diagnose the root cause.
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
> .travis.yml | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/.travis.yml b/.travis.yml
> index 814be151f4..fc9a1fe8a8 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -69,7 +69,7 @@ before_install:
> - wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ
> - git submodule update --init --recursive
> before_script:
> - - ./configure ${CONFIG}
> + - ./configure ${CONFIG} || (cat config.log && exit 1)
> script:
> - make ${MAKEFLAGS} && ${TEST_CMD}
> matrix:
> @@ -151,4 +151,4 @@ matrix:
> - CONFIG="--cc=gcc-7 --cxx=g++-7 --disable-pie --disable-linux-user"
> - TEST_CMD=""
> before_script:
> - - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || cat config.log
> + - ./configure ${CONFIG} --extra-cflags="-g3 -O0 -fsanitize=thread -fuse-ld=gold" || (cat config.log && exit 1)
> --
> 2.17.0
>
Makes sense. this fixes the status code of before_script, though previously as
we mask the error with the "|| cat config.log", make will still fail.
Reviewed-by: Fam Zheng <famz@redhat.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] travis: display config.log when configure fails
2018-06-12 8:28 [Qemu-devel] [PATCH] travis: display config.log when configure fails Daniel P. Berrangé
2018-06-12 8:43 ` Fam Zheng
@ 2018-06-12 12:15 ` Eric Blake
2018-06-12 12:34 ` Philippe Mathieu-Daudé
2018-06-13 12:04 ` Alex Bennée
2 siblings, 1 reply; 5+ messages in thread
From: Eric Blake @ 2018-06-12 12:15 UTC (permalink / raw)
To: Daniel P. Berrangé, qemu-devel
Cc: Alex Bennée, Fam Zheng, Philippe Mathieu-Daudé
On 06/12/2018 03:28 AM, Daniel P. Berrangé wrote:
> When configure fails in CI systems we must be able to see the contents
> of the config.log file to diagnose the root cause.
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
> .travis.yml | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/.travis.yml b/.travis.yml
> index 814be151f4..fc9a1fe8a8 100644
> --- a/.travis.yml
> +++ b/.travis.yml
> @@ -69,7 +69,7 @@ before_install:
> - wget -O - http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz | tar -xvJ
> - git submodule update --init --recursive
> before_script:
> - - ./configure ${CONFIG}
> + - ./configure ${CONFIG} || (cat config.log && exit 1)
If you want one less fork, you can spell this as:
- ./configure ${CONFIG} || { cat config.log && exit 1; }
Either way, the patch makes sense, so:
Reviewed-by: Eric Blake <eblake@redhat.com>
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3266
Virtualization: qemu.org | libvirt.org
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] travis: display config.log when configure fails
2018-06-12 12:15 ` Eric Blake
@ 2018-06-12 12:34 ` Philippe Mathieu-Daudé
0 siblings, 0 replies; 5+ messages in thread
From: Philippe Mathieu-Daudé @ 2018-06-12 12:34 UTC (permalink / raw)
To: Eric Blake, Daniel P. Berrangé, qemu-devel
Cc: Fam Zheng, Alex Bennée
On 06/12/2018 09:15 AM, Eric Blake wrote:
> On 06/12/2018 03:28 AM, Daniel P. Berrangé wrote:
>> When configure fails in CI systems we must be able to see the contents
>> of the config.log file to diagnose the root cause.
>>
>> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
>> ---
>> .travis.yml | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/.travis.yml b/.travis.yml
>> index 814be151f4..fc9a1fe8a8 100644
>> --- a/.travis.yml
>> +++ b/.travis.yml
>> @@ -69,7 +69,7 @@ before_install:
>> - wget -O -
>> http://people.linaro.org/~alex.bennee/qemu-submodule-git-seed.tar.xz |
>> tar -xvJ
>> - git submodule update --init --recursive
>> before_script:
>> - - ./configure ${CONFIG}
>> + - ./configure ${CONFIG} || (cat config.log && exit 1)
>
> If you want one less fork, you can spell this as:
>
> - ./configure ${CONFIG} || { cat config.log && exit 1; }
I was just digging for your previous mail explaining that to use as
reference ;)
>
> Either way, the patch makes sense, so:
> Reviewed-by: Eric Blake <eblake@redhat.com>
>
preferably using {:
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] [PATCH] travis: display config.log when configure fails
2018-06-12 8:28 [Qemu-devel] [PATCH] travis: display config.log when configure fails Daniel P. Berrangé
2018-06-12 8:43 ` Fam Zheng
2018-06-12 12:15 ` Eric Blake
@ 2018-06-13 12:04 ` Alex Bennée
2 siblings, 0 replies; 5+ messages in thread
From: Alex Bennée @ 2018-06-13 12:04 UTC (permalink / raw)
To: Daniel P. Berrangé
Cc: qemu-devel, Fam Zheng, Philippe Mathieu-Daudé
Daniel P. Berrangé <berrange@redhat.com> writes:
> When configure fails in CI systems we must be able to see the contents
> of the config.log file to diagnose the root cause.
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
queued thanks.
<snip>
--
Alex Bennée
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-06-13 12:04 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-12 8:28 [Qemu-devel] [PATCH] travis: display config.log when configure fails Daniel P. Berrangé
2018-06-12 8:43 ` Fam Zheng
2018-06-12 12:15 ` Eric Blake
2018-06-12 12:34 ` Philippe Mathieu-Daudé
2018-06-13 12:04 ` Alex Bennée
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).