QEMU-Devel Archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] ci: Upgrade msys2 release to 20220603
@ 2022-07-28 20:04 Yonggang Luo
  2022-07-29  1:57 ` 罗勇刚(Yonggang Luo)
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Yonggang Luo @ 2022-07-28 20:04 UTC (permalink / raw
  To: qemu-devel
  Cc: Yonggang Luo, Thomas Huth, qemu-trivial,
	Wainer dos Santos Moschetta, Philippe Mathieu-Daudé,
	Alex Bennée, Beraldo Leal

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
---
 .cirrus.yml              | 2 +-
 .gitlab-ci.d/windows.yml | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.cirrus.yml b/.cirrus.yml
index 20843a420c..4ffef6105b 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -12,7 +12,7 @@ windows_msys2_task:
     CIRRUS_SHELL: powershell
     MSYS: winsymlinks:nativestrict
     MSYSTEM: MINGW64
-    MSYS2_URL: https://github.com/msys2/msys2-installer/releases/download/2022-05-03/msys2-base-x86_64-20220503.sfx.exe
+    MSYS2_URL: https://github.com/msys2/msys2-installer/releases/download/2022-06-03/msys2-base-x86_64-20220603.sfx.exe
     MSYS2_FINGERPRINT: 0
     MSYS2_PACKAGES: "
       diffutils git grep make pkg-config sed
diff --git a/.gitlab-ci.d/windows.yml b/.gitlab-ci.d/windows.yml
index 1b2ede49e1..da80fabe2c 100644
--- a/.gitlab-ci.d/windows.yml
+++ b/.gitlab-ci.d/windows.yml
@@ -17,7 +17,7 @@
     }
   - If ( !(Test-Path -Path msys64\var\cache\msys2.exe ) ) {
       Invoke-WebRequest
-      "https://github.com/msys2/msys2-installer/releases/download/2022-05-03/msys2-base-x86_64-20220503.sfx.exe"
+      "https://github.com/msys2/msys2-installer/releases/download/2022-06-03/msys2-base-x86_64-20220603.sfx.exe"
       -outfile "msys64\var\cache\msys2.exe"
     }
   - msys64\var\cache\msys2.exe -y
-- 
2.36.1.windows.1



^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-07-28 20:04 [PATCH v2] ci: Upgrade msys2 release to 20220603 Yonggang Luo
@ 2022-07-29  1:57 ` 罗勇刚(Yonggang Luo)
  2022-07-29  2:08 ` Bin Meng
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: 罗勇刚(Yonggang Luo) @ 2022-07-29  1:57 UTC (permalink / raw
  To: qemu-level
  Cc: Thomas Huth, QEMU Trivial, Wainer dos Santos Moschetta,
	Philippe Mathieu-Daudé, Alex Bennée, Beraldo Leal

[-- Attachment #1: Type: text/plain, Size: 1809 bytes --]

Seems this fixes the gitlab ci
I've running multiple times
https://gitlab.com/lygstate/qemu/-/jobs/2785244516
https://gitlab.com/lygstate/qemu/-/jobs/2785245299
all succeed.

On Fri, Jul 29, 2022 at 4:04 AM Yonggang Luo <luoyonggang@gmail.com> wrote:
>
> Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
> ---
>  .cirrus.yml              | 2 +-
>  .gitlab-ci.d/windows.yml | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/.cirrus.yml b/.cirrus.yml
> index 20843a420c..4ffef6105b 100644
> --- a/.cirrus.yml
> +++ b/.cirrus.yml
> @@ -12,7 +12,7 @@ windows_msys2_task:
>      CIRRUS_SHELL: powershell
>      MSYS: winsymlinks:nativestrict
>      MSYSTEM: MINGW64
> -    MSYS2_URL:
https://github.com/msys2/msys2-installer/releases/download/2022-05-03/msys2-base-x86_64-20220503.sfx.exe
> +    MSYS2_URL:
https://github.com/msys2/msys2-installer/releases/download/2022-06-03/msys2-base-x86_64-20220603.sfx.exe
>      MSYS2_FINGERPRINT: 0
>      MSYS2_PACKAGES: "
>        diffutils git grep make pkg-config sed
> diff --git a/.gitlab-ci.d/windows.yml b/.gitlab-ci.d/windows.yml
> index 1b2ede49e1..da80fabe2c 100644
> --- a/.gitlab-ci.d/windows.yml
> +++ b/.gitlab-ci.d/windows.yml
> @@ -17,7 +17,7 @@
>      }
>    - If ( !(Test-Path -Path msys64\var\cache\msys2.exe ) ) {
>        Invoke-WebRequest
> -      "
https://github.com/msys2/msys2-installer/releases/download/2022-05-03/msys2-base-x86_64-20220503.sfx.exe
"
> +      "
https://github.com/msys2/msys2-installer/releases/download/2022-06-03/msys2-base-x86_64-20220603.sfx.exe
"
>        -outfile "msys64\var\cache\msys2.exe"
>      }
>    - msys64\var\cache\msys2.exe -y
> --
> 2.36.1.windows.1
>


--
         此致
礼
罗勇刚
Yours
    sincerely,
Yonggang Luo

[-- Attachment #2: Type: text/html, Size: 2880 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-07-28 20:04 [PATCH v2] ci: Upgrade msys2 release to 20220603 Yonggang Luo
  2022-07-29  1:57 ` 罗勇刚(Yonggang Luo)
@ 2022-07-29  2:08 ` Bin Meng
  2022-07-29 13:30 ` Alex Bennée
  2022-07-29 19:24 ` Richard Henderson
  3 siblings, 0 replies; 10+ messages in thread
From: Bin Meng @ 2022-07-29  2:08 UTC (permalink / raw
  To: Yonggang Luo
  Cc: qemu-devel@nongnu.org Developers, Thomas Huth, QEMU Trivial,
	Wainer dos Santos Moschetta, Philippe Mathieu-Daudé,
	Alex Bennée, Beraldo Leal

On Fri, Jul 29, 2022 at 4:04 AM Yonggang Luo <luoyonggang@gmail.com> wrote:
>
> Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
> ---
>  .cirrus.yml              | 2 +-
>  .gitlab-ci.d/windows.yml | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>

Reviewed-by: Bin Meng <bmeng.cn@gmail.com>


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-07-28 20:04 [PATCH v2] ci: Upgrade msys2 release to 20220603 Yonggang Luo
  2022-07-29  1:57 ` 罗勇刚(Yonggang Luo)
  2022-07-29  2:08 ` Bin Meng
@ 2022-07-29 13:30 ` Alex Bennée
  2022-07-29 19:24 ` Richard Henderson
  3 siblings, 0 replies; 10+ messages in thread
From: Alex Bennée @ 2022-07-29 13:30 UTC (permalink / raw
  To: Yonggang Luo
  Cc: qemu-devel, Thomas Huth, qemu-trivial,
	Wainer dos Santos Moschetta, Philippe Mathieu-Daudé,
	Beraldo Leal


Yonggang Luo <luoyonggang@gmail.com> writes:

> Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
> ---
>  .cirrus.yml              | 2 +-
>  .gitlab-ci.d/windows.yml | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Queued to testing/next, thanks.


-- 
Alex Bennée


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-07-28 20:04 [PATCH v2] ci: Upgrade msys2 release to 20220603 Yonggang Luo
                   ` (2 preceding siblings ...)
  2022-07-29 13:30 ` Alex Bennée
@ 2022-07-29 19:24 ` Richard Henderson
  2022-08-16 18:53   ` 罗勇刚(Yonggang Luo)
  3 siblings, 1 reply; 10+ messages in thread
From: Richard Henderson @ 2022-07-29 19:24 UTC (permalink / raw
  To: Yonggang Luo, qemu-devel
  Cc: Thomas Huth, qemu-trivial, Wainer dos Santos Moschetta,
	Philippe Mathieu-Daudé, Alex Bennée, Beraldo Leal

On 7/28/22 13:04, Yonggang Luo wrote:
> Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
> ---
>   .cirrus.yml              | 2 +-
>   .gitlab-ci.d/windows.yml | 2 +-
>   2 files changed, 2 insertions(+), 2 deletions(-)

Thanks.  Applied to master as a hot-fix.


r~


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-07-29 19:24 ` Richard Henderson
@ 2022-08-16 18:53   ` 罗勇刚(Yonggang Luo)
  2022-08-19  7:50     ` Thomas Huth
  0 siblings, 1 reply; 10+ messages in thread
From: 罗勇刚(Yonggang Luo) @ 2022-08-16 18:53 UTC (permalink / raw
  To: Richard Henderson
  Cc: qemu-devel, Thomas Huth, qemu-trivial,
	Wainer dos Santos Moschetta, Philippe Mathieu-Daudé,
	Alex Bennée, Beraldo Leal

[-- Attachment #1: Type: text/plain, Size: 754 bytes --]

I have reason to think that's msys2-64 bit failed because out of memory

I tried to show the memory size of the windows docker, it's result
are 6224352KB, that's less than 6GB?
https://gitlab.com/lygstate/qemu/-/jobs/2891399652

Can we increase the memory size to 16GB


On Sat, Jul 30, 2022 at 3:24 AM Richard Henderson <
richard.henderson@linaro.org> wrote:
>
> On 7/28/22 13:04, Yonggang Luo wrote:
> > Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
> > ---
> >   .cirrus.yml              | 2 +-
> >   .gitlab-ci.d/windows.yml | 2 +-
> >   2 files changed, 2 insertions(+), 2 deletions(-)
>
> Thanks.  Applied to master as a hot-fix.
>
>
> r~



--
         此致
礼
罗勇刚
Yours
    sincerely,
Yonggang Luo

[-- Attachment #2: Type: text/html, Size: 1134 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-08-16 18:53   ` 罗勇刚(Yonggang Luo)
@ 2022-08-19  7:50     ` Thomas Huth
  2022-08-22 10:02       ` Daniel P. Berrangé
  0 siblings, 1 reply; 10+ messages in thread
From: Thomas Huth @ 2022-08-19  7:50 UTC (permalink / raw
  To: luoyonggang, Daniel P. Berrange, Alex Bennée
  Cc: qemu-devel, qemu-trivial, Wainer dos Santos Moschetta,
	Philippe Mathieu-Daudé, Beraldo Leal, Richard Henderson

On 16/08/2022 20.53, 罗勇刚(Yonggang Luo) wrote:
> I have reason to think that's msys2-64 bit failed because out of memory
> 
> I tried to show the memory size of the windows docker, it's result 
> are 6224352KB, that's less than 6GB?
> https://gitlab.com/lygstate/qemu/-/jobs/2891399652 
> <https://gitlab.com/lygstate/qemu/-/jobs/2891399652>
> 
> Can we increase the memory size to 16GB

I'm not aware of any way to increase the memory size for gitlab jobs ... 
Daniel, Alex, do you maybe know?

  Thomas



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-08-19  7:50     ` Thomas Huth
@ 2022-08-22 10:02       ` Daniel P. Berrangé
  2022-08-22 14:39         ` 罗勇刚(Yonggang Luo)
  0 siblings, 1 reply; 10+ messages in thread
From: Daniel P. Berrangé @ 2022-08-22 10:02 UTC (permalink / raw
  To: Thomas Huth
  Cc: luoyonggang, Alex Bennée, qemu-devel, qemu-trivial,
	Wainer dos Santos Moschetta, Philippe Mathieu-Daudé,
	Beraldo Leal, Richard Henderson

On Fri, Aug 19, 2022 at 09:50:20AM +0200, Thomas Huth wrote:
> On 16/08/2022 20.53, 罗勇刚(Yonggang Luo) wrote:
> > I have reason to think that's msys2-64 bit failed because out of memory
> > 
> > I tried to show the memory size of the windows docker, it's result
> > are 6224352KB, that's less than 6GB?
> > https://gitlab.com/lygstate/qemu/-/jobs/2891399652
> > <https://gitlab.com/lygstate/qemu/-/jobs/2891399652>
> > 
> > Can we increase the memory size to 16GB
> 
> I'm not aware of any way to increase the memory size for gitlab jobs ...
> Daniel, Alex, do you maybe know?

I don't bvelieve there's any option

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 :|



^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-08-22 10:02       ` Daniel P. Berrangé
@ 2022-08-22 14:39         ` 罗勇刚(Yonggang Luo)
  2022-08-23 11:24           ` Thomas Huth
  0 siblings, 1 reply; 10+ messages in thread
From: 罗勇刚(Yonggang Luo) @ 2022-08-22 14:39 UTC (permalink / raw
  To: Daniel P. Berrangé
  Cc: Thomas Huth, Alex Bennée, qemu-devel, qemu-trivial,
	Wainer dos Santos Moschetta, Philippe Mathieu-Daudé,
	Beraldo Leal, Richard Henderson

[-- Attachment #1: Type: text/plain, Size: 1191 bytes --]

After digging, it seems to be a memory issue, cirrus also uses 8gb, that's
rather weird...

On Mon, Aug 22, 2022 at 6:02 PM Daniel P. Berrangé <berrange@redhat.com>
wrote:
>
> On Fri, Aug 19, 2022 at 09:50:20AM +0200, Thomas Huth wrote:
> > On 16/08/2022 20.53, 罗勇刚(Yonggang Luo) wrote:
> > > I have reason to think that's msys2-64 bit failed because out of
memory
> > >
> > > I tried to show the memory size of the windows docker, it's result
> > > are 6224352KB, that's less than 6GB?
> > > https://gitlab.com/lygstate/qemu/-/jobs/2891399652
> > > <https://gitlab.com/lygstate/qemu/-/jobs/2891399652>
> > >
> > > Can we increase the memory size to 16GB
> >
> > I'm not aware of any way to increase the memory size for gitlab jobs ...
> > Daniel, Alex, do you maybe know?
>
> I don't bvelieve there's any option
>
> 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 :|
>


--
         此致
礼
罗勇刚
Yours
    sincerely,
Yonggang Luo

[-- Attachment #2: Type: text/html, Size: 1920 bytes --]

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH v2] ci: Upgrade msys2 release to 20220603
  2022-08-22 14:39         ` 罗勇刚(Yonggang Luo)
@ 2022-08-23 11:24           ` Thomas Huth
  0 siblings, 0 replies; 10+ messages in thread
From: Thomas Huth @ 2022-08-23 11:24 UTC (permalink / raw
  To: luoyonggang, Daniel P. Berrangé
  Cc: Alex Bennée, qemu-devel, qemu-trivial,
	Wainer dos Santos Moschetta, Philippe Mathieu-Daudé,
	Beraldo Leal, Richard Henderson

On 22/08/2022 16.39, 罗勇刚(Yonggang Luo) wrote:
> After digging, it seems to be a memory issue, cirrus also uses 8gb, that's 
> rather weird...

If it's a memory issue, it might help to remove the "-j2" from the 
invocation of "make", so that only one file is compiled at once...?

  Thomas




^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2022-08-23 11:26 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-07-28 20:04 [PATCH v2] ci: Upgrade msys2 release to 20220603 Yonggang Luo
2022-07-29  1:57 ` 罗勇刚(Yonggang Luo)
2022-07-29  2:08 ` Bin Meng
2022-07-29 13:30 ` Alex Bennée
2022-07-29 19:24 ` Richard Henderson
2022-08-16 18:53   ` 罗勇刚(Yonggang Luo)
2022-08-19  7:50     ` Thomas Huth
2022-08-22 10:02       ` Daniel P. Berrangé
2022-08-22 14:39         ` 罗勇刚(Yonggang Luo)
2022-08-23 11:24           ` Thomas Huth

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 read-only IMAP folder(s) and NNTP newsgroup(s).