178 lines
7.9 KiB
YAML
178 lines
7.9 KiB
YAML
name: On-Demand Live Connector Validation Tests
|
|
|
|
concurrency:
|
|
# This is the name of the concurrency group. It is used to prevent concurrent runs of the same workflow.
|
|
#
|
|
# - github.head_ref is only defined on PR runs, it makes sure that the concurrency group is unique for pull requests
|
|
# ensuring that only one run per pull request is active at a time.
|
|
#
|
|
# - github.run_id is defined on all runs, it makes sure that the concurrency group is unique for workflow dispatches.
|
|
# This allows us to run multiple workflow dispatches in parallel.
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
# Global static-arg inputs for slash commands
|
|
repo:
|
|
description: "The repository name. Optional. Defaults to 'airbytehq/airbyte'."
|
|
required: false
|
|
default: "airbytehq/airbyte"
|
|
type: string
|
|
gitref:
|
|
description: "The git reference (branch or tag). Optional. Defaults to the default branch."
|
|
required: false
|
|
type: string
|
|
comment-id:
|
|
description: "The ID of the comment triggering the workflow. Optional."
|
|
required: false
|
|
type: number
|
|
pr:
|
|
description: "The pull request number, if applicable. Optional."
|
|
required: false
|
|
type: number
|
|
|
|
# Workflow-specific inputs
|
|
connector_filter:
|
|
description: >
|
|
Connector filter. Will be passed to the `airbyte-ci connectors` command.
|
|
To select all modified connectors, use '--modified'. To select specific connectors,
|
|
pass one or or more `--name` args, e.g. '--name=source-faker --name=source-hardcoded-records'.
|
|
default: "--modified"
|
|
connection_id:
|
|
description: >
|
|
Connection ID. ID of the connection to test; use "auto" to let the
|
|
connection retriever choose a connection.
|
|
default: "auto"
|
|
streams:
|
|
description: >
|
|
(Optional) Streams. Which streams to include in tests.
|
|
If not set, these will be chosen automatically.
|
|
required: false
|
|
default: ""
|
|
type: string
|
|
should_read_with_state:
|
|
description: Whether to run tests against the read command with state
|
|
default: "true"
|
|
type: boolean
|
|
use_local_cdk:
|
|
description: Use the local CDK when building the target connector
|
|
default: "false"
|
|
type: boolean
|
|
disable_proxy:
|
|
description: Disable proxy for requests
|
|
default: "false"
|
|
type: boolean
|
|
|
|
# Workaround: GitHub currently supports a max of 10 inputs for workflow_dispatch events.
|
|
# We need to consolidate some inputs to stay within this limit.
|
|
# connection_subset:
|
|
# description: The subset of connections to select from.
|
|
# default: "sandboxes"
|
|
# type: choice
|
|
# options:
|
|
# - sandboxes
|
|
# - all
|
|
|
|
jobs:
|
|
live_tests:
|
|
name: Live Tests
|
|
runs-on: linux-24.04-large # Custom runner, defined in GitHub org settings
|
|
timeout-minutes: 360 # 6 hours
|
|
steps:
|
|
- name: Checkout Airbyte
|
|
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
|
- name: Extract branch name [WORKFLOW DISPATCH]
|
|
shell: bash
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
|
|
id: extract_branch
|
|
|
|
- name: Install Poetry
|
|
id: install_poetry
|
|
uses: snok/install-poetry@76e04a911780d5b312d89783f7b1cd627778900a # v1.4.1
|
|
with:
|
|
version: 1.8.5
|
|
|
|
- name: Make poetry venv in project
|
|
id: poetry_venv
|
|
run: poetry config virtualenvs.in-project true
|
|
|
|
- name: Install Python packages
|
|
id: install_python_packages
|
|
working-directory: airbyte-ci/connectors/pipelines
|
|
run: poetry install
|
|
|
|
- name: Fetch last commit id from remote branch [WORKFLOW DISPATCH]
|
|
if: github.event_name == 'workflow_dispatch'
|
|
id: fetch_last_commit_id_wd
|
|
run: echo "commit_id=$(git rev-parse origin/${{ steps.extract_branch.outputs.branch }})" >> $GITHUB_OUTPUT
|
|
|
|
- name: Setup Stream Parameters
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: |
|
|
if [ -z "${{ github.event.inputs.streams }}" ]; then
|
|
echo "STREAM_PARAMS=" >> $GITHUB_ENV
|
|
else
|
|
STREAMS=$(echo "${{ github.event.inputs.streams }}" | sed 's/,/ --connector_live_tests.selected-streams=/g')
|
|
echo "STREAM_PARAMS=--connector_live_tests.selected-streams=$STREAMS" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Setup Local CDK Flag
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: |
|
|
if ${{ github.event.inputs.use_local_cdk }}; then
|
|
echo "USE_LOCAL_CDK_FLAG=--use-local-cdk" >> $GITHUB_ENV
|
|
else
|
|
echo "USE_LOCAL_CDK_FLAG=" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Setup State Flag
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: |
|
|
if ${{ github.event.inputs.should_read_with_state }}; then
|
|
echo "READ_WITH_STATE_FLAG=--connector_live_tests.should-read-with-state" >> $GITHUB_ENV
|
|
else
|
|
echo "READ_WITH_STATE_FLAG=" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Setup Proxy Flag
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: |
|
|
if ${{ github.event.inputs.disable_proxy }}; then
|
|
echo "DISABLE_PROXY_FLAG=--connector_live_tests.disable-proxy" >> $GITHUB_ENV
|
|
else
|
|
echo "DISABLE_PROXY_FLAG=" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Setup Connection Subset Option
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: |
|
|
echo "CONNECTION_SUBSET=--connector_live_tests.connection-subset=sandboxes" >> $GITHUB_ENV
|
|
# TODO: re-enable when we have resolved the more-than-10-inputs issue in workflow_dispatch.
|
|
# run: |
|
|
# echo "CONNECTION_SUBSET=--connector_live_tests.connection-subset=${{ github.event.inputs.connection_subset }}" >> $GITHUB_ENV
|
|
|
|
# NOTE: We still use a PAT here (rather than a GitHub App) because the workflow needs
|
|
# permissions to add commits to our main repo as well as forks. This will only work on
|
|
# forks if the user installs the app into their fork. Until we document this as a clear
|
|
# path, we will have to keep using the PAT.
|
|
- name: Run Live Tests [WORKFLOW DISPATCH]
|
|
if: github.event_name == 'workflow_dispatch' # TODO: consider using the matrix strategy (https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs). See https://github.com/airbytehq/airbyte/pull/37659#discussion_r1583380234 for details.
|
|
uses: ./.github/actions/run-airbyte-ci
|
|
with:
|
|
context: "manual"
|
|
dagger_cloud_token: ${{ secrets.DAGGER_CLOUD_TOKEN_CACHE_3 }}
|
|
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }}
|
|
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }}
|
|
gcp_integration_tester_credentials: ${{ secrets.GCLOUD_INTEGRATION_TESTER }}
|
|
sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }}
|
|
git_branch: ${{ steps.extract_branch.outputs.branch }}
|
|
git_revision: ${{ steps.fetch_last_commit_id_pr.outputs.commit_id }}
|
|
github_token: ${{ secrets.GH_PAT_MAINTENANCE_OSS }}
|
|
s3_build_cache_access_key_id: ${{ secrets.SELF_RUNNER_AWS_ACCESS_KEY_ID }}
|
|
s3_build_cache_secret_key: ${{ secrets.SELF_RUNNER_AWS_SECRET_ACCESS_KEY }}
|
|
subcommand: connectors ${{ env.USE_LOCAL_CDK_FLAG }} ${{ inputs.connector_filter }} test --only-step connector_live_tests --connector_live_tests.test-suite=live --connector_live_tests.connection-id=${{ github.event.inputs.connection_id }} --connector_live_tests.pr-url="https://github.com/airbytehq/airbyte/pull/${{ github.event.inputs.pr }}" ${{ env.READ_WITH_STATE_FLAG }} ${{ env.DISABLE_PROXY_FLAG }} ${{ env.STREAM_PARAMS }} ${{ env.CONNECTION_SUBSET }}
|