Re: Heads Up: cirrus-ci is shutting down June 1st
Andres Freund <andres@anarazel.de>
From: Andres Freund <andres@anarazel.de>
To: Nazir Bilal Yavuz <byavuz81@gmail.com>
Cc: Jacob Champion <jacob.champion@enterprisedb.com>, Jelte Fennema-Nio <postgres@jeltef.nl>,
Thomas Munro <thomas.munro@gmail.com>, pgsql-hackers@postgresql.org, Zsolt Parragi <zsolt.parragi@percona.com>, Peter Eisentraut <peter@eisentraut.org>
Date: 2026-05-31T01:42:35Z
Lists: pgsql-hackers
Hi,
On 2026-05-29 12:51:29 +0300, Nazir Bilal Yavuz wrote:
> + - name: Upload logs
> + if: failure()
> + uses: actions/upload-artifact@v7
> + with:
> + name: windows-vs-logs-${{ github.run_id }}
> + path: |
> + ${{ env._LOG_PATHS }}
> + crashlog-*.txt
> + if-no-files-found: ignore
You're collecting crash logs here, but that doesn't ever work, because we only
got them thanks to the windows image setting things up that way
(c.f. scripts/windows_install_dbg.ps1).
Looks like cdb.exe is actually installed in the windows runner images, so we
just need to use the registry settings from that file.
I'm working on a bunch of other edits (planning to post them soon, need a bit
more work), but I am currently not planning to look at that aspect
immediately.
Greetings,
Andres Freund