Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaohansong committed Oct 16, 2023
1 parent 0886fce commit e88826e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 18 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/connector-performance-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,17 @@ on:
dataset:
type: string
required: true
repo:
description: "Repo to check out code from. Defaults to the main airbyte repo. Set this when building connectors from forked repos."
required: false
default: "airbytehq/airbyte"
gitref:
description: "The git ref to check out from the specified repository."
required: false
default: master
uuid:
description: "Custom UUID of workflow run. Used because GitHub dispatches endpoint does not return workflow run id."
required: false
workflow_dispatch:
inputs:
connector:
Expand Down
18 changes: 0 additions & 18 deletions .github/workflows/connector-performance-cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,46 +7,28 @@ jobs:
with:
connector: connectors/source-postgres
dataset: 1m
repo: "airbytehq/airbyte"
gitref: master
uuid: ""
postgres-10m-run:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: connectors/source-postgres
dataset: 10m
repo: "airbytehq/airbyte"
gitref: master
uuid: ""
postgres-20m-run:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: connectors/source-postgres
dataset: 20m
repo: "airbytehq/airbyte"
gitref: master
uuid: ""
mysql-1m-run:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: connectors/source-mysql
dataset: 1m
repo: "airbytehq/airbyte"
gitref: master
uuid: ""
mysql-10m-run:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: connectors/source-mysql
dataset: 10m
repo: "airbytehq/airbyte"
gitref: master
uuid: ""
mysql-20m-run:
uses: ./.github/workflows/connector-performance-command.yml
with:
connector: connectors/source-mysql
dataset: 20m
repo: "airbytehq/airbyte"
gitref: master
uuid: ""

0 comments on commit e88826e

Please sign in to comment.