-
Notifications
You must be signed in to change notification settings - Fork 490
/
Copy pathbuild_darwin.sh
executable file
·44 lines (39 loc) · 1.41 KB
/
build_darwin.sh
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
#!/bin/bash -e
#
# Build Snowflake Python Connector on Mac
# NOTES:
# - To compile only a specific version(s) pass in versions like: `./build_darwin.sh "3.9 3.10"`
PYTHON_VERSIONS="${1:-3.9 3.10 3.11 3.12 3.13}"
THIS_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
CONNECTOR_DIR="$(dirname "${THIS_DIR}")"
DIST_DIR="$CONNECTOR_DIR/dist"
cd $CONNECTOR_DIR
# Clean up previously built DIST_DIR
if [ -d "${DIST_DIR}" ]; then
echo "[WARN] ${DIST_DIR} already existing, deleting it..."
rm -rf "${DIST_DIR}"
fi
mkdir -p ${DIST_DIR}
# Make sure we build for our lowest target
# Should be kept in sync with .github/worklfows/build_test.yml
export MACOSX_DEPLOYMENT_TARGET="10.14"
for PYTHON_VERSION in ${PYTHON_VERSIONS}; do
# Constants and setup
PYTHON="python${PYTHON_VERSION}"
VENV_DIR="${CONNECTOR_DIR}/venv-${PYTHON_VERSION}"
# Need to create a venv to update build dependencies
${PYTHON} -m venv ${VENV_DIR}
source ${VENV_DIR}/bin/activate
echo "[Info] Created and activated new venv at ${VENV_DIR}"
# Build
echo "[Info] Creating a wheel: snowflake_connector using $PYTHON"
# Clean up possible build artifacts
rm -rf build generated_version.py
# Update PEP-517 dependencies
python -m pip install -U pip setuptools wheel build
# Use new PEP-517 build
python -m build --wheel .
deactivate
echo "[Info] Deleting venv at ${VENV_DIR}"
rm -rf ${VENV_DIR}
done