* [PATCH] gitlab: Disable plugins for cross-i386-tci
@ 2023-06-29 13:08 Richard Henderson
2023-06-29 15:06 ` Thomas Huth
0 siblings, 1 reply; 3+ messages in thread
From: Richard Henderson @ 2023-06-29 13:08 UTC (permalink / raw)
To: qemu-devel; +Cc: alex.bennee
There are timeouts in the cross-i386-tci job that are related to plugins.
Restrict this job to basic TCI testing.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
E.g. most recent failure(s),
https://gitlab.com/qemu-project/qemu/-/jobs/4565517825
4488: make[1]: *** [Makefile:189: run-plugin-memory-with-libbb.so] Error 124
4497: make[1]: *** [Makefile:189: run-plugin-memory-with-libempty.so] Error 124
4506: make[1]: *** [Makefile:189: run-plugin-memory-with-libinsn.so] Error 124
4550: make[1]: *** [Makefile:189: run-plugin-memory-with-libmem.so] Error 124
4558: make[1]: *** [Makefile:189: run-plugin-memory-with-libsyscall.so] Error 124
We do tci+plugin testing with an x86_64 job, so I don't think it's
important that we cover plugins here. Mostly we want to make sure
that TCI *builds* on a 32-bit host.
Anyway, here's a pass with shared infrastructure,
https://gitlab.com/rth7680/qemu/-/jobs/4565547513
There might well be different timings on the project k8s hosts.
r~
---
.gitlab-ci.d/crossbuilds.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.gitlab-ci.d/crossbuilds.yml b/.gitlab-ci.d/crossbuilds.yml
index 1e0e6c7f2c..b6ec99ecd1 100644
--- a/.gitlab-ci.d/crossbuilds.yml
+++ b/.gitlab-ci.d/crossbuilds.yml
@@ -57,7 +57,7 @@ cross-i386-tci:
variables:
IMAGE: fedora-i386-cross
ACCEL: tcg-interpreter
- EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user
+ EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins
MAKE_CHECK_ARGS: check check-tcg
cross-mipsel-system:
--
2.34.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] gitlab: Disable plugins for cross-i386-tci
2023-06-29 13:08 [PATCH] gitlab: Disable plugins for cross-i386-tci Richard Henderson
@ 2023-06-29 15:06 ` Thomas Huth
2023-06-30 6:09 ` Richard Henderson
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Huth @ 2023-06-29 15:06 UTC (permalink / raw)
To: Richard Henderson, qemu-devel; +Cc: alex.bennee
On 29/06/2023 15.08, Richard Henderson wrote:
> There are timeouts in the cross-i386-tci job that are related to plugins.
> Restrict this job to basic TCI testing.
>
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>
> E.g. most recent failure(s),
>
> https://gitlab.com/qemu-project/qemu/-/jobs/4565517825
> 4488: make[1]: *** [Makefile:189: run-plugin-memory-with-libbb.so] Error 124
> 4497: make[1]: *** [Makefile:189: run-plugin-memory-with-libempty.so] Error 124
> 4506: make[1]: *** [Makefile:189: run-plugin-memory-with-libinsn.so] Error 124
> 4550: make[1]: *** [Makefile:189: run-plugin-memory-with-libmem.so] Error 124
> 4558: make[1]: *** [Makefile:189: run-plugin-memory-with-libsyscall.so] Error 124
>
> We do tci+plugin testing with an x86_64 job, so I don't think it's
> important that we cover plugins here. Mostly we want to make sure
> that TCI *builds* on a 32-bit host.
>
> Anyway, here's a pass with shared infrastructure,
> https://gitlab.com/rth7680/qemu/-/jobs/4565547513
>
> There might well be different timings on the project k8s hosts.
>
>
> r~
>
> ---
> .gitlab-ci.d/crossbuilds.yml | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/.gitlab-ci.d/crossbuilds.yml b/.gitlab-ci.d/crossbuilds.yml
> index 1e0e6c7f2c..b6ec99ecd1 100644
> --- a/.gitlab-ci.d/crossbuilds.yml
> +++ b/.gitlab-ci.d/crossbuilds.yml
> @@ -57,7 +57,7 @@ cross-i386-tci:
> variables:
> IMAGE: fedora-i386-cross
> ACCEL: tcg-interpreter
> - EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user
> + EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins
> MAKE_CHECK_ARGS: check check-tcg
>
> cross-mipsel-system:
FWIW,
Acked-by: Thomas Huth <thuth@redhat.com>
I assume you'll apply this directly as a CI fix?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] gitlab: Disable plugins for cross-i386-tci
2023-06-29 15:06 ` Thomas Huth
@ 2023-06-30 6:09 ` Richard Henderson
0 siblings, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2023-06-30 6:09 UTC (permalink / raw)
To: Thomas Huth, qemu-devel; +Cc: alex.bennee
On 6/29/23 17:06, Thomas Huth wrote:
> On 29/06/2023 15.08, Richard Henderson wrote:
>> There are timeouts in the cross-i386-tci job that are related to plugins.
>> Restrict this job to basic TCI testing.
>>
>> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
>> ---
>>
>> E.g. most recent failure(s),
>>
>> https://gitlab.com/qemu-project/qemu/-/jobs/4565517825
>> 4488: make[1]: *** [Makefile:189: run-plugin-memory-with-libbb.so] Error 124
>> 4497: make[1]: *** [Makefile:189: run-plugin-memory-with-libempty.so] Error 124
>> 4506: make[1]: *** [Makefile:189: run-plugin-memory-with-libinsn.so] Error 124
>> 4550: make[1]: *** [Makefile:189: run-plugin-memory-with-libmem.so] Error 124
>> 4558: make[1]: *** [Makefile:189: run-plugin-memory-with-libsyscall.so] Error 124
>>
>> We do tci+plugin testing with an x86_64 job, so I don't think it's
>> important that we cover plugins here. Mostly we want to make sure
>> that TCI *builds* on a 32-bit host.
>>
>> Anyway, here's a pass with shared infrastructure,
>> https://gitlab.com/rth7680/qemu/-/jobs/4565547513
>>
>> There might well be different timings on the project k8s hosts.
>>
>>
>> r~
>>
>> ---
>> .gitlab-ci.d/crossbuilds.yml | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/.gitlab-ci.d/crossbuilds.yml b/.gitlab-ci.d/crossbuilds.yml
>> index 1e0e6c7f2c..b6ec99ecd1 100644
>> --- a/.gitlab-ci.d/crossbuilds.yml
>> +++ b/.gitlab-ci.d/crossbuilds.yml
>> @@ -57,7 +57,7 @@ cross-i386-tci:
>> variables:
>> IMAGE: fedora-i386-cross
>> ACCEL: tcg-interpreter
>> - EXTRA_CONFIGURE_OPTS:
>> --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user
>> + EXTRA_CONFIGURE_OPTS:
>> --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins
>> MAKE_CHECK_ARGS: check check-tcg
>> cross-mipsel-system:
>
> FWIW,
> Acked-by: Thomas Huth <thuth@redhat.com>
>
> I assume you'll apply this directly as a CI fix?
Yes. Now done.
r~
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-06-30 6:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-29 13:08 [PATCH] gitlab: Disable plugins for cross-i386-tci Richard Henderson
2023-06-29 15:06 ` Thomas Huth
2023-06-30 6:09 ` Richard Henderson
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).