-
Notifications
You must be signed in to change notification settings - Fork 490
/
Copy pathbuild_windows.bat
48 lines (33 loc) · 1016 Bytes
/
build_windows.bat
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
::
:: Build Snowflake Python Connector on Windows
:: NOTES:
:: - This is designed to ONLY be called in our Windows workers in Jenkins
:: - To restrict what version gets created edit this file
SET SCRIPT_DIR=%~dp0
SET CONNECTOR_DIR=%~dp0\..\
set python_versions= 3.9 3.10 3.11 3.12 3.13
cd %CONNECTOR_DIR%
set venv_dir=%WORKSPACE%\venv-flake8
if %errorlevel% neq 0 goto :error
py -3.9 -m venv %venv_dir%
if %errorlevel% neq 0 goto :error
call %venv_dir%\scripts\activate
if %errorlevel% neq 0 goto :error
python -m pip install --upgrade pip awscli setuptools wheel
if %errorlevel% neq 0 goto :error
(for %%v in (%python_versions%) do (
call :build_wheel_file %%v || goto :error
))
call deactivate
dir dist
EXIT /B %ERRORLEVEL%
:build_wheel_file
set pv=%~1
echo Going to compile wheel for Python %pv%
py -%pv% -m pip install --upgrade pip setuptools wheel build
if %errorlevel% neq 0 goto :error
py -%pv% -m build --wheel .
if %errorlevel% neq 0 goto :error
EXIT /B 0
:error
exit /b %errorlevel%