diff mbox series

gitlab: Disable plugins for cross-i386-tci

Message ID 20230629130844.151453-1-richard.henderson@linaro.org
State Accepted
Commit 3b746a43ebf3eb4f5be74dbc36c6c15661472d9e
Headers show
Series gitlab: Disable plugins for cross-i386-tci | expand

Commit Message

Richard Henderson June 29, 2023, 1:08 p.m. UTC
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(-)

Comments

Thomas Huth June 29, 2023, 3:06 p.m. UTC | #1
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?
Richard Henderson June 30, 2023, 6:09 a.m. UTC | #2
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~
diff mbox series

Patch

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: