Hi, On Sun, 31 May 2026 at 04:42, Andres Freund <[email protected]> wrote: > > 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.
Ah, I see. I removed crashlog-*.txt for now and added a comment to v5 that it needs to be fixed [1]. Command in the 'scripts/windows_install_dbg.ps1' is more complicated than I thought [2], I need to work on it. [1] https://postgr.es/m/CAN55FZ3kE%2B_yM0akRAXBWM2rLnprEROB%2BJSEPrp1mvchdMBYBg%40mail.gmail.com [2] https://github.com/anarazel/pg-vm-images/blob/main/scripts/windows_install_dbg.ps1#L56C1-L56C229 -- Regards, Nazir Bilal Yavuz Microsoft
