From 01260ca15517311badafd98368cdef683671bb48 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Orell=20B=C3=BChler?= Date: Sun, 23 Aug 2026 21:12:12 +0200 Subject: [PATCH] TEMP: dump windows imports on main --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f59ac44..ee55077 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -197,6 +197,14 @@ jobs: # the adapter/MCP layer isn't a permanent blind spot. - name: Test kerf-app run: cargo test -p kerf-app --no-default-features --locked + - name: TEMP dump windows imports + if: always() && matrix.platform == 'windows-latest' + shell: pwsh + run: | + $exe = (Get-ChildItem target\debug\deps\kerf_app_lib-*.exe | Sort-Object LastWriteTime -Descending | Select-Object -First 1).FullName + Write-Host "exe: $exe" + $dumpbin = (Get-ChildItem "C:\Program Files*\Microsoft Visual Studio\*\*\VC\Tools\MSVC\*\bin\Hostx64\x64\dumpbin.exe" -ErrorAction SilentlyContinue | Select-Object -First 1).FullName + & $dumpbin /imports $exe | Select-String -Pattern 'comctl32|TaskDialog' | ForEach-Object { Write-Host "IMPORTLINE: $($_.Line.Trim())" } # Release bundles are built with `--features whisper` (in-process speech-to-text, # so transcription doesn't depend on how the user's ffmpeg was configured). Every