mbox

[PULL,0/6] Biuld system and CI changes for 2023-11-10

Message ID 20231111152923.966998-1-pbonzini@redhat.com (mailing list archive)
State New, archived
Headers show

Pull-request

https://gitlab.com/bonzini/qemu.git tags/for-upstream

Message

Paolo Bonzini Nov. 11, 2023, 3:29 p.m. UTC
The following changes since commit ad6ef0a42e314a8c6ac6c96d5f6e607a1e5644b5:

  Merge tag 'for-upstream' of https://repo.or.cz/qemu/kevin into staging (2023-11-09 08:26:01 +0800)

are available in the Git repository at:

  https://gitlab.com/bonzini/qemu.git tags/for-upstream

for you to fetch changes up to 1d802d050caeff83add1054bee1fc9f98e59a3f2:

  .gitlab-ci.d/cirrus: Add manual testing of macOS 14 (Sonoma) (2023-11-10 10:39:05 +0100)

----------------------------------------------------------------
* document what configure does with virtual environments
* Bump known good meson version to v1.2.3
* Upgrade macOS to 13 (Ventura) and Add manual testing of macOS 14 (Sonoma)
* use simple assertions instead of Coverity models

----------------------------------------------------------------
Paolo Bonzini (2):
      tests: respect --enable/--disable-download for Avocado
      docs: document what configure does with virtual environments

Philippe Mathieu-Daudé (3):
      buildsys: Bump known good meson version to v1.2.3
      .gitlab-ci.d/cirrus: Upgrade macOS to 13 (Ventura)
      .gitlab-ci.d/cirrus: Add manual testing of macOS 14 (Sonoma)

Vladimir Sementsov-Ogievskiy (1):
      coverity: physmem: use simple assertions instead of modelling

 .gitlab-ci.d/cirrus.yml                            |  22 +++++-
 .../cirrus/{macos-12.vars => macos-13.vars}        |   2 +-
 .gitlab-ci.d/cirrus/macos-14.vars                  |  16 ++++
 configure                                          |   9 ++-
 docs/devel/build-system.rst                        |  88 ++++++++++++++++++++-
 python/scripts/vendor.py                           |   4 +-
 python/wheels/meson-0.63.3-py3-none-any.whl        | Bin 926526 -> 0 bytes
 python/wheels/meson-1.2.3-py3-none-any.whl         | Bin 0 -> 964928 bytes
 pythondeps.toml                                    |   5 +-
 scripts/coverity-scan/model.c                      |  88 ---------------------
 system/physmem.c                                   |  22 ++++++
 tests/Makefile.include                             |   2 +-
 tests/lcitool/libvirt-ci                           |   2 +-
 tests/lcitool/refresh                              |   3 +-
 14 files changed, 157 insertions(+), 106 deletions(-)
 rename .gitlab-ci.d/cirrus/{macos-12.vars => macos-13.vars} (95%)
 create mode 100644 .gitlab-ci.d/cirrus/macos-14.vars
 delete mode 100644 python/wheels/meson-0.63.3-py3-none-any.whl
 create mode 100644 python/wheels/meson-1.2.3-py3-none-any.whl

Comments

Stefan Hajnoczi Nov. 12, 2023, 6:06 p.m. UTC | #1
On Sat, 11 Nov 2023 at 23:30, Paolo Bonzini <pbonzini@redhat.com> wrote:
>
> The following changes since commit ad6ef0a42e314a8c6ac6c96d5f6e607a1e5644b5:
>
>   Merge tag 'for-upstream' of https://repo.or.cz/qemu/kevin into staging (2023-11-09 08:26:01 +0800)
>
> are available in the Git repository at:
>
>   https://gitlab.com/bonzini/qemu.git tags/for-upstream
>
> for you to fetch changes up to 1d802d050caeff83add1054bee1fc9f98e59a3f2:
>
>   .gitlab-ci.d/cirrus: Add manual testing of macOS 14 (Sonoma) (2023-11-10 10:39:05 +0100)
>
> ----------------------------------------------------------------
> * document what configure does with virtual environments
> * Bump known good meson version to v1.2.3
> * Upgrade macOS to 13 (Ventura) and Add manual testing of macOS 14 (Sonoma)
> * use simple assertions instead of Coverity models

I'm not sure which commit causes this, but there is an msys failure:

"gcc" "-m64" "-mcx16" -o tests/plugin/libbb.dll
plugins/qemu_plugin_api.lib tests/plugin/libbb.dll.p/bb.c.obj
tests/plugin/libbb.dll.p/.._.._contrib_plugins_win32_linker.c.obj
"-Wl,--allow-shlib-undefined" "-shared" "-Wl,--start-group"
"-Wl,--out-implib=tests/plugin/libbb.dll.a" "-fstack-protector-strong"
"-Wl,--no-seh" "-Wl,--nxcompat" "-Wl,--dynamicbase"
"-Wl,--high-entropy-va" "-Wl,--warn-common"
"C:/GitLab-Runner/builds/qemu-project/qemu/msys64/mingw64/lib/libglib-2.0.dll.a"
"C:/GitLab-Runner/builds/qemu-project/qemu/msys64/mingw64/lib/libintl.dll.a"
"C:/GitLab-Runner/builds/qemu-project/qemu/msys64/mingw64/lib/libgmodule-2.0.dll.a"
"-lkernel32" "-luser32" "-lgdi32" "-lwinspool" "-lshell32" "-lole32"
"-loleaut32" "-luuid" "-lcomdlg32" "-ladvapi32" "-Wl,--end-group"
C:/GitLab-Runner/builds/qemu-project/qemu/msys64/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/13.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe:
tests/plugin/libbb.dll.p/bb.c.obj:bb.c:(.text+0x219): undefined
reference to `__imp_qemu_plugin_outs'

Here is the failing output with this PR applied:
https://gitlab.com/qemu-project/qemu/-/jobs/5516759417

Here is the master branch's passing output:
https://gitlab.com/qemu-project/qemu/-/jobs/5513282154

Please take a look. Thanks!

Stefan

>
> ----------------------------------------------------------------
> Paolo Bonzini (2):
>       tests: respect --enable/--disable-download for Avocado
>       docs: document what configure does with virtual environments
>
> Philippe Mathieu-Daudé (3):
>       buildsys: Bump known good meson version to v1.2.3
>       .gitlab-ci.d/cirrus: Upgrade macOS to 13 (Ventura)
>       .gitlab-ci.d/cirrus: Add manual testing of macOS 14 (Sonoma)
>
> Vladimir Sementsov-Ogievskiy (1):
>       coverity: physmem: use simple assertions instead of modelling
>
>  .gitlab-ci.d/cirrus.yml                            |  22 +++++-
>  .../cirrus/{macos-12.vars => macos-13.vars}        |   2 +-
>  .gitlab-ci.d/cirrus/macos-14.vars                  |  16 ++++
>  configure                                          |   9 ++-
>  docs/devel/build-system.rst                        |  88 ++++++++++++++++++++-
>  python/scripts/vendor.py                           |   4 +-
>  python/wheels/meson-0.63.3-py3-none-any.whl        | Bin 926526 -> 0 bytes
>  python/wheels/meson-1.2.3-py3-none-any.whl         | Bin 0 -> 964928 bytes
>  pythondeps.toml                                    |   5 +-
>  scripts/coverity-scan/model.c                      |  88 ---------------------
>  system/physmem.c                                   |  22 ++++++
>  tests/Makefile.include                             |   2 +-
>  tests/lcitool/libvirt-ci                           |   2 +-
>  tests/lcitool/refresh                              |   3 +-
>  14 files changed, 157 insertions(+), 106 deletions(-)
>  rename .gitlab-ci.d/cirrus/{macos-12.vars => macos-13.vars} (95%)
>  create mode 100644 .gitlab-ci.d/cirrus/macos-14.vars
>  delete mode 100644 python/wheels/meson-0.63.3-py3-none-any.whl
>  create mode 100644 python/wheels/meson-1.2.3-py3-none-any.whl
> --
> 2.41.0
>
>
Paolo Bonzini Nov. 14, 2023, 1:54 p.m. UTC | #2
Il dom 12 nov 2023, 13:06 Stefan Hajnoczi <stefanha@gmail.com> ha scritto:

> On Sat, 11 Nov 2023 at 23:30, Paolo Bonzini <pbonzini@redhat.com> wrote:
> >
> > The following changes since commit
> ad6ef0a42e314a8c6ac6c96d5f6e607a1e5644b5:
> >
> >   Merge tag 'for-upstream' of https://repo.or.cz/qemu/kevin into
> staging (2023-11-09 08:26:01 +0800)
> >
> > are available in the Git repository at:
> >
> >   https://gitlab.com/bonzini/qemu.git tags/for-upstream
> >
> > for you to fetch changes up to 1d802d050caeff83add1054bee1fc9f98e59a3f2:
> >
> >   .gitlab-ci.d/cirrus: Add manual testing of macOS 14 (Sonoma)
> (2023-11-10 10:39:05 +0100)
> >
> > ----------------------------------------------------------------
> > * document what configure does with virtual environments
> > * Bump known good meson version to v1.2.3
> > * Upgrade macOS to 13 (Ventura) and Add manual testing of macOS 14
> (Sonoma)
> > * use simple assertions instead of Coverity models
>
> I'm not sure which commit causes this, but there is an msys failure:
>
> Here is the failing output with this PR applied:
> https://gitlab.com/qemu-project/qemu/-/jobs/5516759417
>
> Here is the master branch's passing output:
> https://gitlab.com/qemu-project/qemu/-/jobs/5513282154
>
> Please take a look. Thanks!
>

Looks like the series causes issue #1972 to appear more prominently. I will
resubmit once it's fixed (a patch is already available).

Paolo


> Stefan
>
> >
> > ----------------------------------------------------------------
> > Paolo Bonzini (2):
> >       tests: respect --enable/--disable-download for Avocado
> >       docs: document what configure does with virtual environments
> >
> > Philippe Mathieu-Daudé (3):
> >       buildsys: Bump known good meson version to v1.2.3
> >       .gitlab-ci.d/cirrus: Upgrade macOS to 13 (Ventura)
> >       .gitlab-ci.d/cirrus: Add manual testing of macOS 14 (Sonoma)
> >
> > Vladimir Sementsov-Ogievskiy (1):
> >       coverity: physmem: use simple assertions instead of modelling
> >
> >  .gitlab-ci.d/cirrus.yml                            |  22 +++++-
> >  .../cirrus/{macos-12.vars => macos-13.vars}        |   2 +-
> >  .gitlab-ci.d/cirrus/macos-14.vars                  |  16 ++++
> >  configure                                          |   9 ++-
> >  docs/devel/build-system.rst                        |  88
> ++++++++++++++++++++-
> >  python/scripts/vendor.py                           |   4 +-
> >  python/wheels/meson-0.63.3-py3-none-any.whl        | Bin 926526 -> 0
> bytes
> >  python/wheels/meson-1.2.3-py3-none-any.whl         | Bin 0 -> 964928
> bytes
> >  pythondeps.toml                                    |   5 +-
> >  scripts/coverity-scan/model.c                      |  88
> ---------------------
> >  system/physmem.c                                   |  22 ++++++
> >  tests/Makefile.include                             |   2 +-
> >  tests/lcitool/libvirt-ci                           |   2 +-
> >  tests/lcitool/refresh                              |   3 +-
> >  14 files changed, 157 insertions(+), 106 deletions(-)
> >  rename .gitlab-ci.d/cirrus/{macos-12.vars => macos-13.vars} (95%)
> >  create mode 100644 .gitlab-ci.d/cirrus/macos-14.vars
> >  delete mode 100644 python/wheels/meson-0.63.3-py3-none-any.whl
> >  create mode 100644 python/wheels/meson-1.2.3-py3-none-any.whl
> > --
> > 2.41.0
> >
> >
>
>