Skip to content

Commit 556666d

Browse files
committed
Adding verbose build to wheel builds
1 parent 70095c0 commit 556666d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.ci/azure-wheel-helpers/azure-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ steps:
99
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" $(python.architecture)
1010
set MSSdk=1
1111
set DISTUTILS_USE_SDK=1
12-
python -m pip wheel . -w wheelhouse/
12+
python -m pip wheel -v . -w wheelhouse/
1313
displayName: 'Build wheel (Windows Python 2.7)'
1414
condition: and(succeeded(), eq(variables['Agent.OS'], 'Windows_NT'), eq(variables['python.version'], '2.7'))
1515

1616
- script: |
17-
python -m pip wheel . -w wheelhouse/
17+
python -m pip wheel -v . -w wheelhouse/
1818
displayName: 'Build wheel'
1919
condition: and(succeeded(), not(and(eq(variables['Agent.OS'], 'Windows_NT'), eq(variables['python.version'], '2.7'))))
2020

.ci/azure-wheel-helpers/build-wheels.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ echo "Using Pythons: ${pys[@]}"
2626
# Compile wheels
2727
for PYBIN in "${pys[@]}"; do
2828
"${PYBIN}/pip" install -r /io/$dev_requirements_file
29-
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
29+
"${PYBIN}/pip" wheel -v /io/ -w wheelhouse/
3030
done
3131

3232
# Bundle external shared libraries into the wheels

0 commit comments

Comments
 (0)