File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 5050 id : build_windows
5151 run : pip install -e .[test]
5252 env :
53- CMAKE_ARGS : " -G Ninja -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl"
54- SKBUILD_CMAKE_ARGS : " -G Ninja -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl"
53+ CMAKE_GENERATOR : Ninja
54+ CMAKE_C_COMPILER : clang-cl
55+ CMAKE_CXX_COMPILER : clang-cl
5556 CC : clang-cl
5657 CXX : clang-cl
5758 continue-on-error : true
Original file line number Diff line number Diff line change 1717 # Skip PyPy wheels for now (numexpr needs some adjustments first)
1818 # musllinux takes too long to build, and it's not worth it for now
1919 CIBW_SKIP : " pp* *musllinux* *-win32"
20- # Use CMAKE_ARGS/SKBUILD_CMAKE_ARGS so scikit-build-core forwards generator/compiler reliably on Windows.
21- CIBW_ENVIRONMENT_WINDOWS : " PATH=C:\\ Program Files\\ LLVM\\ bin;%PATH% CC=clang-cl CXX=clang-cl CMAKE_ARGS= \" -G Ninja -DCMAKE_C_COMPILER =clang-cl -DCMAKE_CXX_COMPILER =clang-cl\" SKBUILD_CMAKE_ARGS= \" -G Ninja -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl \" "
20+ # Use explicit generator/compiler env vars; CMAKE_ARGS with spaces is not split on Windows.
21+ CIBW_ENVIRONMENT_WINDOWS : " PATH=C:\\ Program Files\\ LLVM\\ bin;%PATH% CC=clang-cl CXX=clang-cl CMAKE_GENERATOR= Ninja CMAKE_C_COMPILER =clang-cl CMAKE_CXX_COMPILER =clang-cl"
2222
2323jobs :
2424
You can’t perform that action at this time.
0 commit comments