File tree 1 file changed +19
-6
lines changed
1 file changed +19
-6
lines changed Original file line number Diff line number Diff line change @@ -146,21 +146,34 @@ jobs:
146
146
pyenv : cp36
147
147
148
148
steps :
149
- - name : Check out code
150
- uses : actions/checkout@v2
151
-
152
149
- name : Set up environment
150
+ run : >-
151
+ choco.exe install --no-progress --yes --ignore-detected-reboot --allow-downgrade
152
+ --install-arguments "'ADDLOCAL=ALL'"
153
+ ${{ matrix.arch == 'win32' && '--x86' || '' }}
154
+ mitkerberos
155
+
156
+ - name : Download sdist
157
+ uses : actions/download-artifact@v2
158
+ with :
159
+ name : artifact
160
+ path : ./
161
+
162
+ - name : Extract sdist
153
163
shell : bash
154
- run : ./ci/build.sh
155
- env :
156
- OS_NAME : windows
164
+ run : |
165
+ tar xf gssapi-*.tar.gz
166
+ mv gssapi-*/* .
167
+ rm -r gssapi-*/
168
+ rm gssapi-*.tar.gz
157
169
158
170
- name : Build wheel
159
171
160
172
env :
161
173
CIBW_ARCHS : all
162
174
CIBW_BUILD : ${{ matrix.pyenv }}-${{ matrix.arch }}
163
175
CIBW_BUILD_VERBOSITY : 1
176
+ PATH : C:\Program Files${{ matrix.arch == 'win32' && ' (x86)' || '' }}\MIT\Kerberos\bin;$PATH
164
177
165
178
- name : Upload wheel
166
179
uses : actions/upload-artifact@v2
You can’t perform that action at this time.
0 commit comments