This repository was archived by the owner on May 11, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-6
lines changed
Expand file tree Collapse file tree 2 files changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,13 @@ jobs:
1919 arch : x86_64
2020 - os : windows-latest
2121 arch : AMD64
22+ - os : windows-latest
23+ arch : x86
2224 steps :
2325 - uses : actions/checkout@v2
2426 - uses : actions/setup-python@v1
2527 with :
2628 python-version : 3.8
27- - name : Install yasm (windows)
28- if : matrix.os == 'windows-latest'
29- run : curl -L -o 'C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\Tools\yasm.exe' http://www.tortall.net/projects/yasm/releases/yasm-1.3.0-win64.exe
3029 - name : Build codecs
3130 env :
3231 CIBW_ARCHS : ${{ matrix.arch }}
Original file line number Diff line number Diff line change 44if sys .platform == "win32" :
55 include_dirs = ["C:\\ cibw\\ vendor\\ include" ]
66 library_dirs = ["C:\\ cibw\\ vendor\\ lib" ]
7- libraries = ["opus" , "vpxmt" ]
87else :
98 include_dirs = ["/tmp/vendor/include" ]
109 library_dirs = ["/tmp/vendor/lib" ]
11- libraries = ["opus" , "vpx" ]
1210
1311setuptools .setup (
1412 name = "dummy" ,
1917 "dummy.binding" ,
2018 include_dirs = include_dirs ,
2119 library_dirs = library_dirs ,
22- libraries = libraries ,
20+ libraries = [ "opus" , "vpx" ] ,
2321 sources = ["src/dummy/binding.c" ],
2422 ),
2523 ],
You can’t perform that action at this time.
0 commit comments