forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (41 loc) · 1.23 KB
/
connector-performance-cron.yml
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
name: Connector Performance Harness Cron
on:
schedule:
# * is a special character in YAML so you have to quote this string
- # Twice a week, Monday and Thursday.
- cron: "0 0 * * 1,4"
workflow_dispatch: # for manual triggers
jobs:
postgres-1m-run:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: "connectors/source-postgres"
dataset: 1m
secrets: inherit
mysql-1m-run:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: "connectors/source-mysql"
dataset: 1m
secrets: inherit
postgres-1m-run-incremental:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: "connectors/source-postgres"
dataset: 1m
sync-mode: "incremental"
secrets: inherit
mysql-1m-run-incremental:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: "connectors/source-mysql"
dataset: 1m
sync-mode: "incremental"
secrets: inherit
mongodb-1m-run-incremental:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: "connectors/source-mongodb-v2"
dataset: 1m
sync-mode: "incremental"
secrets: inherit