File tree 1 file changed +7
-9
lines changed
1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change 70
70
run : |
71
71
choco install openssl --version=3.3.2 -f -y
72
72
73
+ - name : Install CLang for Windows
74
+ if : runner.os == 'Windows'
75
+ run : |
76
+ choco install llvm -y
77
+ refreshenv
78
+
73
79
- name : Install Conan
74
80
if : runner.os == 'Windows'
75
81
uses : turtlebrowser/get-conan@main
@@ -100,6 +106,7 @@ jobs:
100
106
if : runner.os == 'Windows' && matrix.platform == 'win64'
101
107
run : |
102
108
echo "CIBW_BUILD=cp*win_amd64" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
109
+ echo "CIBW_ENVIRONMENT_WINDOWS= CC=clang CXX=clang++" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf-8 -Append
103
110
104
111
- name : Overwrite for Windows PyPY
105
112
if : runner.os == 'Windows' && matrix.platform == 'PyPy'
@@ -129,15 +136,6 @@ jobs:
129
136
echo "CIBW_BEFORE_TEST_MACOS=pip install -r {project}/test-requirements.txt pytest" >> $GITHUB_ENV
130
137
echo "CIBW_TEST_COMMAND_MACOS=" >> $GITHUB_ENV
131
138
132
- - name : Install and configure MSVC
133
- uses : TheMrMilchmann/setup-msvc-dev@v3
134
- if : matrix.os == 'windows-2022'
135
- with :
136
- arch : x64
137
- # sdk: 10.0.10240.0
138
- toolset : 14
139
- uwp : true
140
-
141
139
- name : Build wheels
142
140
run : |
143
141
python3 -m cibuildwheel --output-dir wheelhouse
You can’t perform that action at this time.
0 commit comments