-
Notifications
You must be signed in to change notification settings - Fork 16
248 lines (235 loc) · 7.63 KB
/
python.yaml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
name: Python Connectors
on:
push:
branches: [main]
paths:
- "estuary-cdk/**"
- "source-airtable/**"
- "source-asana/**"
- "source-facebook-marketing/**"
- "source-gladly/**"
- "source-google-ads/**"
- "source-google-sheets-native/**"
- "source-hubspot-native/**"
- "source-hubspot/**"
- "source-notion/**"
- "source-linkedin-pages/**"
- "source-linkedin-ads-v2/**"
- "source-oracle-flashback/**"
- "source-klaviyo/**"
- "source-recharge/**"
- "source-stripe-native/**"
- "source-zendesk-support/**"
- "source-iterable/**"
- "source-pendo/**"
- "source-twilio/**"
- "source-jira-native/**"
- "source-mixpanel-native/**"
- "source-brevo/**"
- "source-impact-native/**"
- "source-front/**"
- "source-genesys/**"
pull_request:
branches: [main]
paths:
- "estuary-cdk/**"
- "source-airtable/**"
- "source-asana/**"
- "source-facebook-marketing/**"
- "source-gladly/**"
- "source-google-ads/**"
- "source-google-sheets-native/**"
- "source-hubspot-native/**"
- "source-hubspot/**"
- "source-notion/**"
- "source-linkedin-pages/**"
- "source-linkedin-ads-v2/**"
- "source-oracle-flashback/**"
- "source-recharge/**"
- "source-klaviyo/**"
- "source-recharge/**"
- "source-stripe-native/**"
- "source-zendesk-support/**"
- "source-iterable/**"
- "source-jira-native/**"
- "source-pendo/**"
- "source-twilio/**"
- "source-jira-native/**"
- "source-mixpanel-native/**"
- "source-brevo/**"
- "source-impact-native/**"
- "source-front/**"
- "source-genesys/**"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
py_connector:
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
connector:
# Note that every entry here must specify usage_rate. We're unable to
# set a default and selectively override it with `0.0`, because GH actions
# considers zero values to be "unset" (which is bs and I'm salty about it).
- name: source-airtable
type: capture
version: v1
usage_rate: "1.0"
- name: source-asana
type: capture
version: v1
usage_rate: "1.0"
- name: source-facebook-marketing
type: capture
version: v4
usage_rate: "1.0"
- name: source-gladly
type: capture
version: v1
usage_rate: "1.0"
- name: source-google-ads
type: capture
version: v2
usage_rate: "1.0"
- name: source-google-sheets-native
type: capture
version: v1
usage_rate: "0.0"
- name: source-hubspot-native
type: capture
version: v1
usage_rate: "1.0"
- name: source-hubspot
type: capture
version: v5
usage_rate: "1.0"
- name: source-notion
type: capture
version: v2
usage_rate: "1.0"
- name: source-oracle-flashback
type: capture
version: v1
usage_rate: "1.0"
- name: source-linkedin-pages
type: capture
version: v1
usage_rate: "1.0"
- name: source-linkedin-ads-v2
type: capture
version: v1
usage_rate: "1.0"
- name: source-klaviyo
type: capture
version: v1
usage_rate: "1.0"
- name: source-recharge
type: capture
version: v1
usage_rate: "1.0"
- name: source-stripe-native
type: capture
version: v1
usage_rate: "1.0"
- name: source-zendesk-support
type: capture
version: v2
usage_rate: "1.0"
- name: source-iterable
type: capture
version: v2
usage_rate: "1.0"
- name: source-pendo
type: capture
version: v2
usage_rate: "1.0"
- name: source-twilio
type: capture
version: v2
usage_rate: "1.0"
- name: source-jira-native
type: capture
version: v2
usage_rate: "1.0"
- name: source-mixpanel-native
type: capture
version: v2
usage_rate: "1.0"
- name: source-brevo
type: capture
version: v1
usage_rate: "1.0"
- name: source-impact-native
type: capture
version: v2
usage_rate: "1.0"
- name: source-front
type: capture
version: v2
usage_rate: "1.0"
- name: source-genesys
type: capture
version: v1
usage_rate: "1.0"
steps:
- uses: actions/checkout@v4
- name: Download flow-network-tunnel and add it to $PATH
run: |
mkdir ./network-tunnel
docker pull ghcr.io/estuary/network-tunnel:dev
docker cp $(docker create --name temp ghcr.io/estuary/network-tunnel:dev sh):/flow-network-tunnel ./network-tunnel/flow-network-tunnel
docker rm temp
echo "${PWD}/network-tunnel" >> $GITHUB_PATH
- name: Common Setup
id: setup
uses: ./.github/actions/setup
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
gcp_project_id: ${{ secrets.GCP_PROJECT_ID }}
gcp_service_account_key: ${{ secrets.GCP_SERVICE_ACCOUNT_KEY }}
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
uses: snok/install-poetry@v1
- name: ${{ matrix.connector.name }} tests
run: |
cd ${{ matrix.connector.name }}
poetry install
source $(poetry env info --path)/bin/activate
cd ..
pytest ${{ matrix.connector.name }}
# Uncomment to allow each connector to have its own Dockerfile
#- name: Find Dockerfile for ${{ matrix.connector.name }}
# id: dockerfile
# run: |
# DOCKERFILE_PATH="${PWD}/estuary-cdk/common.Dockerfile"
# if [ -f "${{ matrix.connector.name }}/Dockerfile" ]; then
# DOCKERFILE_PATH="${PWD}/${{ matrix.connector.name }}/Dockerfile"
# fi
# echo "path=${DOCKERFILE_PATH}" >> $GITHUB_OUTPUT
- name: Build ${{ matrix.connector.name }} Docker Image
uses: docker/build-push-action@v6
with:
context: .
file: estuary-cdk/common.Dockerfile
load: true
build-args: |
CONNECTOR_NAME=${{ matrix.connector.name }}
CONNECTOR_TYPE=${{ matrix.connector.type }}
USAGE_RATE=${{ matrix.connector.usage_rate }}
tags: ghcr.io/estuary/${{ matrix.connector.name }}:local
- name: Deployment
uses: ./.github/actions/deploy
with:
connector: ${{ matrix.connector.name }}
pg_database: ${{ secrets.POSTGRES_CONNECTOR_REFRESH_DATABASE }}
pg_host: ${{ secrets.POSTGRES_CONNECTOR_REFRESH_HOST }}
pg_password: ${{ secrets.POSTGRES_CONNECTOR_REFRESH_PASSWORD }}
pg_user: ${{ secrets.POSTGRES_CONNECTOR_REFRESH_USER }}
tag_sha: ${{ steps.setup.outputs.tag_sha }}
tag_version: ${{ matrix.connector.version }}
variants: ${{ matrix.connector.variants }}