This is an automated email from the ASF dual-hosted git repository.

lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 3385adc  ci: copy Windows wheels to final path (#646)
3385adc is described below

commit 3385adc4109914d55a6abe1e5b628eec37999ceb
Author: David Li <[email protected]>
AuthorDate: Wed May 3 15:38:37 2023 -0400

    ci: copy Windows wheels to final path (#646)
    
    Fixes #639.
---
 ci/scripts/python_wheel_windows_build.bat | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/ci/scripts/python_wheel_windows_build.bat 
b/ci/scripts/python_wheel_windows_build.bat
index 3d76ad9..8e77071 100644
--- a/ci/scripts/python_wheel_windows_build.bat
+++ b/ci/scripts/python_wheel_windows_build.bat
@@ -87,7 +87,10 @@ FOR %%c IN (adbc_driver_manager adbc_driver_flightsql 
adbc_driver_postgresql adb
     )
 
     echo "=== (%PYTHON_VERSION%) Repair %%c wheel ==="
+    REM Always copy the wheel once since delvewheel doesn't copy if no changes 
needed
+    mkdir repaired_wheels
     FOR %%w IN (dist\*.whl) DO (
+        copy %%w repaired_wheels\
         delvewheel repair -w repaired_wheels\ %%w || exit /B 1
     )
 

Reply via email to