From a1e12d602dc80ee0df3f3f0658dc8a9e9e8a9532 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Wed, 29 Oct 2025 21:33:31 +0100 Subject: [PATCH] CI: remove procdump setup It was added in 6ff1a1f8a631ab9b243a8, but we never really needed it since then. Since MS is currently down and this causes CI to fail, it's a good time to remove it. If we need it again it's always in the git history.. --- .github/workflows/main.yml | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5a6f26059e..cfb3ce3683 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,19 +33,6 @@ jobs: $BUILD_DRIVE = Split-Path $env:GITHUB_WORKSPACE -Qualifier echo "drive=$BUILD_DRIVE" >> $env:GITHUB_OUTPUT - - name: Setup JIT minidump - run: | - Set-Location '${{ runner.temp }}' - Invoke-WebRequest -Uri 'https://download.sysinternals.com/files/Procdump.zip' -OutFile Procdump.zip - Expand-Archive Procdump.zip -DestinationPath . - New-Item -Path '_dumps' -ItemType Directory - if ($env:RUNNER_ARCH -eq 'ARM64') { - .\procdump64a.exe -accepteula -ma -i "${{ runner.temp }}/_dumps" - } else { - .\procdump64.exe -accepteula -ma -i "${{ runner.temp }}/_dumps" - .\procdump.exe -accepteula -ma -i "${{ runner.temp }}/_dumps" - } - - name: Configure Pagefile if: ${{ matrix.msystem != 'CLANGARM64' }} # https://github.com/al-cheb/configure-pagefile-action/issues/16 @@ -103,14 +90,6 @@ jobs: path: ${{ steps.facts.outputs.drive }}/_/artifacts/*.pkg.tar.* if-no-files-found: ignore - - name: "Upload dumps" - if: ${{ !cancelled() }} - uses: actions/upload-artifact@v5 - with: - name: ${{ matrix.msystem }}-dumps - path: ${{ runner.temp }}/_dumps/*.dmp - if-no-files-found: ignore - check: needs: [build] runs-on: windows-2022