We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a8d6375 commit d728c91Copy full SHA for d728c91
.github/workflows/build_wheels_windows.yml
@@ -61,6 +61,18 @@ jobs:
61
uses: microsoft/[email protected]
62
- name: Setup NASM
63
uses: ilammy/setup-nasm@v1
64
+
65
+ - name: Debug Visual Studio and MSBuild
66
+ shell: pwsh
67
+ run: |
68
+ Get-Command msbuild.exe -All
69
+ &"C:\Program Files\Microsoft Visual Studio\Installer\vswhere.exe" -all -products * -format json | ConvertFrom-Json | ForEach-Object {
70
+ $_.displayName
71
+ $_.installationPath
72
+ $_.catalog.productDisplayVersion
73
+ $_.catalog.productLine
74
+ }
75
76
- name: Build a package
77
# CMake 3.25 regression fix. See https://stackoverflow.com/questions/74162633/problem-compiling-from-source-opencv-with-mvsc2019-in-64-bit-version
78
run: |
0 commit comments