Re: Installer freezes in windows-2022 GitHub Action

2024-10-24 Thread Brian Inglis via Cygwin
On 2024-10-23 07:28, Jon Turney via Cygwin wrote: On 21/10/2024 18:02, Brian Inglis via Cygwin wrote: On 2024-10-21 02:56, Michele Locati via Cygwin wrote: Unfortunately sha512.sum checksum files are no longer reliable, unless they have a later time stamp than the other downloads, as they are u

Re: Installer freezes in windows-2022 GitHub Action

2024-10-23 Thread Jon Turney via Cygwin
On 21/10/2024 18:02, Brian Inglis via Cygwin wrote: On 2024-10-21 02:56, Michele Locati via Cygwin wrote: [...] Unfortunately sha512.sum checksum files are no longer reliable, unless they have a later time stamp than the other downloads, as they are updated asynchronously. I assume you're

Re: Installer freezes in windows-2022 GitHub Action

2024-10-23 Thread Jon Turney via Cygwin
On 22/10/2024 09:29, Dimitry Andric via Cygwin wrote: Thanks for reporting this problem. I suspect this is mod_qos (https://mod-qos.sourceforge.net/) that is doing something like rate-limiting, but instead of giving you a 403 Forbidden, it gives you a zero content-length. Looks like it would b

Re: Installer freezes in windows-2022 GitHub Action

2024-10-22 Thread David Allsopp via Cygwin
On Tue, 22 Oct 2024 at 09:02, Michele Locati via Cygwin wrote: > More data-points - running from a couple of networks here in the UK, but adapting your script to display the x-cache header as well: Downloading https://cygwin.com/setup-x86_64.exe multiple times (press Ctrl+C to stop) x-cache: MIS

Re: Installer freezes in windows-2022 GitHub Action

2024-10-22 Thread Dimitry Andric via Cygwin
Yeah, this is even happening over http/2: Host cygwin.com:443 was resolved. * IPv6: (none) * IPv4: 8.43.85.97 * Trying 8.43.85.97:443... * Connected to cygwin.com (8.43.85.97) port 443 > GET /setup-x86_64.exe HTTP/2 > Host: cygwin.com > User-Agent: curl/8.7.1 > Accept: */* > * Request completely

Re: Installer freezes in windows-2022 GitHub Action

2024-10-22 Thread Michele Locati via Cygwin
Il giorno mar 22 ott 2024 alle ore 06:28 Brian Inglis via Cygwin ha scritto: > I typically use wget -N -nv for downloads, without any issues for decades, on > any service. Hello Brian, thanks for the reply! It seems the problem occurs when we require the same URL from the same IP multiple times

Re: Installer freezes in windows-2022 GitHub Action

2024-10-21 Thread Brian Inglis via Cygwin
On 2024-10-21 11:36, Michele Locati via Cygwin wrote: Il giorno lun 21 ott 2024 alle ore 19:03 Brian Inglis via Cygwin ha scritto: I think it was probably an issue caused by a malformed executable in a mirror/CDN (which would explain why it worked sometimes and sometimes not). That's kind of

Re: Installer freezes in windows-2022 GitHub Action

2024-10-21 Thread Michele Locati via Cygwin
Il giorno lun 21 ott 2024 alle ore 19:03 Brian Inglis via Cygwin ha scritto: > > I think it was probably an issue caused by a malformed executable in a > > mirror/CDN (which would explain why it worked sometimes and sometimes > > not). > > That's kind of worrying, but also kind of typical of MS se

Re: Installer freezes in windows-2022 GitHub Action

2024-10-21 Thread Brian Inglis via Cygwin
On 2024-10-21 02:56, Michele Locati via Cygwin wrote: I have had the following failure 2 out of 4 times (see [1]): Program 'setup.exe' failed to run: The specified executable is not a valid application for this OS platform. The problem no longer occurs. I think it was probably an issue caused

Re: Installer freezes in windows-2022 GitHub Action

2024-10-21 Thread Michele Locati via Cygwin
> I have had the following failure 2 out of 4 times (see [1]): > > Program 'setup.exe' failed to run: The specified executable is not a > valid application for this OS platform. The problem no longer occurs. I think it was probably an issue caused by a malformed executable in a mirror/CDN (which w

Re: Installer freezes in windows-2022 GitHub Action

2024-10-20 Thread Michele Locati via Cygwin
> > Program 'setup.exe' failed to run: The specified executable is not a > > valid application for this OS platform. > Could newer Windows 11 builds require a a signed executable, or newer manifest > GUID, version, urn asmv than Win 10: I don't think the problem is about having a signed executabl

Re: Installer freezes in windows-2022 GitHub Action

2024-10-20 Thread Brian Inglis via Cygwin
On 2024-10-20 13:20, Michele Locati via Cygwin wrote: Il giorno dom 20 ott 2024 alle ore 19:57 Jon Turney ha scritto: You might like to try the semi-official action [1] [1] https://github.com/cygwin/cygwin-install-action Hi Jon, thanks for the tip! I tried it, with this GitHub Action step:

Re: Installer freezes in windows-2022 GitHub Action

2024-10-20 Thread Michele Locati via Cygwin
Il giorno dom 20 ott 2024 alle ore 19:57 Jon Turney ha scritto: > You might like to try the semi-official action [1] > [1] https://github.com/cygwin/cygwin-install-action Hi Jon, thanks for the tip! I tried it, with this GitHub Action step: - name: Install Cygwin uses: cygwin/cygwin-install

Re: Installer freezes in windows-2022 GitHub Action

2024-10-20 Thread Jon Turney via Cygwin
On 18/10/2024 21:58, Michele Locati via Cygwin wrote: Hello everybody, In a GitHub Action running on windows-2022 [1], I have a couple of steps like this: [...] The problem is that sometimes (but not always) the second step gets stuck: absolutely nothing is printed (even if the --verbose opt

Installer freezes in windows-2022 GitHub Action

2024-10-18 Thread Michele Locati via Cygwin
Hello everybody, In a GitHub Action running on windows-2022 [1], I have a couple of steps like this: - name: Download Cygwin installer shell: pwsh run: | Invoke-WebRequest -Uri https://cygwin.com/setup-x86_64.exe -OutFile C:\CygwinInstaller.exe $expectedHash = (Invoke-WebRequest -Ur