[PATCH v2 09/14] gitlab: Replace aarch64 with arm in cross-i686-tci build

Richard Henderson posted 14 patches 2 months ago
There is a newer version of this series
[PATCH v2 09/14] gitlab: Replace aarch64 with arm in cross-i686-tci build
Posted by Richard Henderson 2 months ago
Configuration of 64-bit host on 32-bit guest will shortly
be denied.  Use a 32-bit guest instead.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 .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 95dfc39224..7ae0f966f1 100644
--- a/.gitlab-ci.d/crossbuilds.yml
+++ b/.gitlab-ci.d/crossbuilds.yml
@@ -61,7 +61,7 @@ cross-i686-tci:
   variables:
     IMAGE: debian-i686-cross
     ACCEL: tcg-interpreter
-    EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins --disable-kvm
+    EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,arm-softmmu,arm-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins --disable-kvm
     # Force tests to run with reduced parallelism, to see whether this
     # reduces the flakiness of this CI job. The CI
     # environment by default shows us 8 CPUs and so we
-- 
2.43.0
Re: [PATCH v2 09/14] gitlab: Replace aarch64 with arm in cross-i686-tci build
Posted by Alex Bennée 2 months ago
Richard Henderson <richard.henderson@linaro.org> writes:

> Configuration of 64-bit host on 32-bit guest will shortly
> be denied.  Use a 32-bit guest instead.
>
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro
Re: [PATCH v2 09/14] gitlab: Replace aarch64 with arm in cross-i686-tci build
Posted by Thomas Huth 2 months ago
On 03/02/2025 04.18, Richard Henderson wrote:
> Configuration of 64-bit host on 32-bit guest will shortly
> be denied.  Use a 32-bit guest instead.
> 
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>   .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 95dfc39224..7ae0f966f1 100644
> --- a/.gitlab-ci.d/crossbuilds.yml
> +++ b/.gitlab-ci.d/crossbuilds.yml
> @@ -61,7 +61,7 @@ cross-i686-tci:
>     variables:
>       IMAGE: debian-i686-cross
>       ACCEL: tcg-interpreter
> -    EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,aarch64-softmmu,aarch64-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins --disable-kvm
> +    EXTRA_CONFIGURE_OPTS: --target-list=i386-softmmu,i386-linux-user,arm-softmmu,arm-linux-user,ppc-softmmu,ppc-linux-user --disable-plugins --disable-kvm
>       # Force tests to run with reduced parallelism, to see whether this
>       # reduces the flakiness of this CI job. The CI
>       # environment by default shows us 8 CPUs and so we

Reviewed-by: Thomas Huth <thuth@redhat.com>