Skip to content

Commit 34c8ef1

Browse files
authored
Update build_wheels_windows.yml
1 parent fb2ce32 commit 34c8ef1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build_wheels_windows.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,12 @@ jobs:
7272
set "CI_BUILD=1" && python setup.py bdist_wheel --py-limited-api=cp37 --dist-dir=%cd%\wheelhouse -v
7373
shell: cmd
7474

75-
- name: Check for Media Foundation
75+
- name: Find CMakeCache.txt and check for MSMF
7676
run: |
77-
findstr /i MSMF build\CMakeCache.txt || echo "MSMF not found"
77+
for /r %%f in (CMakeCache.txt) do (
78+
echo Found: %%f
79+
findstr /i MSMF "%%f"
80+
)
7881
shell: cmd
7982

8083
- name: Saving all wheels

0 commit comments

Comments
 (0)