[PATCH] .gitlab-ci.d/windows.yml: Drop msys2-32bit job

Peter Maydell posted 1 patch 9 months, 1 week ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20240220165602.135695-1-peter.maydell@linaro.org
Maintainers: Yonggang Luo <luoyonggang@gmail.com>, "Alex Bennée" <alex.bennee@linaro.org>, "Philippe Mathieu-Daudé" <philmd@linaro.org>, Thomas Huth <thuth@redhat.com>, Wainer dos Santos Moschetta <wainersm@redhat.com>, Beraldo Leal <bleal@redhat.com>
.gitlab-ci.d/windows.yml | 9 ---------
1 file changed, 9 deletions(-)
[PATCH] .gitlab-ci.d/windows.yml: Drop msys2-32bit job
Posted by Peter Maydell 9 months, 1 week ago
MSYS2 is dropping support for 32-bit Windows.  This shows up for us
as various packages we were using in our CI job no longer being
available to install, which causes the job to fail.  In commit
8e31b744fdf we dropped the dependency on libusb and spice, but the
dtc package has also now been removed.

For us as QEMU upstream, "32 bit x86 hosts for system emulation" have
already been deprecated as of QEMU 8.0, so we are ready to drop them
anyway.

Drop the msys2-32bit CI job, as the first step in doing this.

This is cc'd to stable, because this job will also be broken for CI
on the stable branches.  We can't drop 32-bit support entirely there,
but we will still be covering at least compilation for 32-bit Windows
via the cross-win32-system job.

Cc: qemu-stable@nongnu.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
Minimal patch that disables CI, for ease of backporting.
---
 .gitlab-ci.d/windows.yml | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/.gitlab-ci.d/windows.yml b/.gitlab-ci.d/windows.yml
index 5c1e385dc89..8fc08218d28 100644
--- a/.gitlab-ci.d/windows.yml
+++ b/.gitlab-ci.d/windows.yml
@@ -131,12 +131,3 @@ msys2-64bit:
     # qTests don't run successfully with "--without-default-devices",
     # so let's exclude the qtests from CI for now.
     TEST_ARGS: --no-suite qtest
-
-msys2-32bit:
-  extends: .shared_msys2_builder
-  variables:
-    MINGW_TARGET: mingw-w64-i686
-    MSYSTEM: MINGW32
-    EXTRA_PACKAGES:
-    CONFIGURE_ARGS:  --target-list=ppc64-softmmu -Ddebug=false -Doptimization=0
-    TEST_ARGS: --no-suite qtest
-- 
2.34.1
Re: [PATCH] .gitlab-ci.d/windows.yml: Drop msys2-32bit job
Posted by Alex Bennée 9 months, 1 week ago
Peter Maydell <peter.maydell@linaro.org> writes:

> MSYS2 is dropping support for 32-bit Windows.  This shows up for us
> as various packages we were using in our CI job no longer being
> available to install, which causes the job to fail.  In commit
> 8e31b744fdf we dropped the dependency on libusb and spice, but the
> dtc package has also now been removed.
>
> For us as QEMU upstream, "32 bit x86 hosts for system emulation" have
> already been deprecated as of QEMU 8.0, so we are ready to drop them
> anyway.
>
> Drop the msys2-32bit CI job, as the first step in doing this.
>
> This is cc'd to stable, because this job will also be broken for CI
> on the stable branches.  We can't drop 32-bit support entirely there,
> but we will still be covering at least compilation for 32-bit Windows
> via the cross-win32-system job.

Queued to testing/next, unless you wish to apply directly in which case:

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

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro
Re: [PATCH] .gitlab-ci.d/windows.yml: Drop msys2-32bit job
Posted by Thomas Huth 9 months, 1 week ago
On 20/02/2024 17.56, Peter Maydell wrote:
> MSYS2 is dropping support for 32-bit Windows.  This shows up for us
> as various packages we were using in our CI job no longer being
> available to install, which causes the job to fail.  In commit
> 8e31b744fdf we dropped the dependency on libusb and spice, but the
> dtc package has also now been removed.
> 
> For us as QEMU upstream, "32 bit x86 hosts for system emulation" have
> already been deprecated as of QEMU 8.0, so we are ready to drop them
> anyway.
> 
> Drop the msys2-32bit CI job, as the first step in doing this.
> 
> This is cc'd to stable, because this job will also be broken for CI
> on the stable branches.  We can't drop 32-bit support entirely there,
> but we will still be covering at least compilation for 32-bit Windows
> via the cross-win32-system job.
> 
> Cc: qemu-stable@nongnu.org
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> Minimal patch that disables CI, for ease of backporting.
> ---
>   .gitlab-ci.d/windows.yml | 9 ---------
>   1 file changed, 9 deletions(-)
> 
> diff --git a/.gitlab-ci.d/windows.yml b/.gitlab-ci.d/windows.yml
> index 5c1e385dc89..8fc08218d28 100644
> --- a/.gitlab-ci.d/windows.yml
> +++ b/.gitlab-ci.d/windows.yml
> @@ -131,12 +131,3 @@ msys2-64bit:
>       # qTests don't run successfully with "--without-default-devices",
>       # so let's exclude the qtests from CI for now.
>       TEST_ARGS: --no-suite qtest
> -
> -msys2-32bit:
> -  extends: .shared_msys2_builder
> -  variables:
> -    MINGW_TARGET: mingw-w64-i686
> -    MSYSTEM: MINGW32
> -    EXTRA_PACKAGES:
> -    CONFIGURE_ARGS:  --target-list=ppc64-softmmu -Ddebug=false -Doptimization=0
> -    TEST_ARGS: --no-suite qtest

We could maybe merge .shared_msys2_builder with the msys2-64bit job now that 
we only have one Windows-based job left ... but that's maybe also rather 
something for another patch, so:

Reviewed-by: Thomas Huth <thuth@redhat.com>
Re: [PATCH] .gitlab-ci.d/windows.yml: Drop msys2-32bit job
Posted by Peter Maydell 9 months, 1 week ago
On Tue, 20 Feb 2024 at 17:01, Thomas Huth <thuth@redhat.com> wrote:
>
> On 20/02/2024 17.56, Peter Maydell wrote:
> > MSYS2 is dropping support for 32-bit Windows.  This shows up for us
> > as various packages we were using in our CI job no longer being
> > available to install, which causes the job to fail.  In commit
> > 8e31b744fdf we dropped the dependency on libusb and spice, but the
> > dtc package has also now been removed.
> >
> > For us as QEMU upstream, "32 bit x86 hosts for system emulation" have
> > already been deprecated as of QEMU 8.0, so we are ready to drop them
> > anyway.
> >
> > Drop the msys2-32bit CI job, as the first step in doing this.
> >
> > This is cc'd to stable, because this job will also be broken for CI
> > on the stable branches.  We can't drop 32-bit support entirely there,
> > but we will still be covering at least compilation for 32-bit Windows
> > via the cross-win32-system job.
> >
> > Cc: qemu-stable@nongnu.org
> > Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> > ---
> > Minimal patch that disables CI, for ease of backporting.
> > ---
> >   .gitlab-ci.d/windows.yml | 9 ---------
> >   1 file changed, 9 deletions(-)
> >
> > diff --git a/.gitlab-ci.d/windows.yml b/.gitlab-ci.d/windows.yml
> > index 5c1e385dc89..8fc08218d28 100644
> > --- a/.gitlab-ci.d/windows.yml
> > +++ b/.gitlab-ci.d/windows.yml
> > @@ -131,12 +131,3 @@ msys2-64bit:
> >       # qTests don't run successfully with "--without-default-devices",
> >       # so let's exclude the qtests from CI for now.
> >       TEST_ARGS: --no-suite qtest
> > -
> > -msys2-32bit:
> > -  extends: .shared_msys2_builder
> > -  variables:
> > -    MINGW_TARGET: mingw-w64-i686
> > -    MSYSTEM: MINGW32
> > -    EXTRA_PACKAGES:
> > -    CONFIGURE_ARGS:  --target-list=ppc64-softmmu -Ddebug=false -Doptimization=0
> > -    TEST_ARGS: --no-suite qtest
>
> We could maybe merge .shared_msys2_builder with the msys2-64bit job now that
> we only have one Windows-based job left ... but that's maybe also rather
> something for another patch

Yeah, that was the bit I left for a different patch for backporting
reasons. I'm also working on eg having the docs say 32-bit Windows
isn't supported, etc.

-- PMM
Re: [PATCH] .gitlab-ci.d/windows.yml: Drop msys2-32bit job
Posted by Daniel P. Berrangé 9 months, 1 week ago
On Tue, Feb 20, 2024 at 04:56:02PM +0000, Peter Maydell wrote:
> MSYS2 is dropping support for 32-bit Windows.  This shows up for us
> as various packages we were using in our CI job no longer being
> available to install, which causes the job to fail.  In commit
> 8e31b744fdf we dropped the dependency on libusb and spice, but the
> dtc package has also now been removed.
> 
> For us as QEMU upstream, "32 bit x86 hosts for system emulation" have
> already been deprecated as of QEMU 8.0, so we are ready to drop them
> anyway.
> 
> Drop the msys2-32bit CI job, as the first step in doing this.
> 
> This is cc'd to stable, because this job will also be broken for CI
> on the stable branches.  We can't drop 32-bit support entirely there,
> but we will still be covering at least compilation for 32-bit Windows
> via the cross-win32-system job.
> 
> Cc: qemu-stable@nongnu.org
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
> Minimal patch that disables CI, for ease of backporting.
> ---
>  .gitlab-ci.d/windows.yml | 9 ---------
>  1 file changed, 9 deletions(-)

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


With regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|