Skip to content

Commit 23b14bc

Browse files
committed
deployment changes dev
1 parent d6ba408 commit 23b14bc

File tree

2 files changed

+319
-18
lines changed

2 files changed

+319
-18
lines changed

.github/workflows/snowpark-ci-cd.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,17 @@ jobs:
2525
- name: Install dependencies
2626
run: |
2727
python -m pip install --upgrade pip
28+
29+
# Install Poetry for better dependency management
30+
pip install poetry
31+
32+
# Install from requirements.txt
2833
pip install -r requirements.txt
2934
35+
# Verify Snow CLI installation
36+
snow --version
37+
snow help | grep snowpark
38+
3039
- name: Set environment variables based on branch
3140
run: |
3241
# Determine environment based on branch
@@ -107,8 +116,20 @@ jobs:
107116
- name: Install dependencies
108117
run: |
109118
python -m pip install --upgrade pip
119+
120+
# Install Poetry for better dependency management
121+
pip install poetry
122+
123+
# Install from requirements.txt
110124
pip install -r requirements.txt
111-
pip install snowflake-connector-python pandas
125+
126+
# Install Snow CLI and Snowpark extension explicitly
127+
pip install snowflake-cli snowflake-cli-labs
128+
snow extension install snowpark
129+
130+
# Verify Snow CLI installation
131+
snow --version
132+
snow help | grep snowpark
112133
113134
- name: Set environment variables based on branch
114135
run: |

0 commit comments

Comments
 (0)