ci: Move check_manifests step to ci-windows-cross.py

This is almost a refactor. The only change is putting the
bitcoind.manifest into a different folder.
This commit is contained in:
MarcoFalke
2026-02-10 11:20:02 +01:00
parent fa674d55df
commit faf7389466
2 changed files with 32 additions and 17 deletions

View File

@@ -412,23 +412,7 @@ jobs:
- *SET_UP_VS
- name: Check executable manifests
shell: pwsh -Command "$PSVersionTable; $PSNativeCommandUseErrorActionPreference = $true; $ErrorActionPreference = 'Stop'; & '{0}'"
run: |
mt.exe -nologo -inputresource:bin\bitcoind.exe -out:bitcoind.manifest
Get-Content bitcoind.manifest
Get-ChildItem -Filter "bin\*.exe" | ForEach-Object {
$exeName = $_.Name
# Skip as they currently do not have manifests
if ($exeName -eq "fuzz.exe" -or $exeName -eq "bench_bitcoin.exe" -or $exeName -eq "test_kernel.exe") {
Write-Host "Skipping $exeName (no manifest present)"
return
}
Write-Host "Checking $exeName"
& mt.exe -nologo -inputresource:$_.FullName -validate_manifest
}
run: py -3 .github/ci-windows-cross.py check_manifests
- name: Run unit tests
# Can't use ctest here like other jobs as we don't have a CMake build tree.