Test connectors: weekly build for Community connectors - on ci-runner-connector-nightly-xlarge-dagger-0-6-4 #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Connector Ops CI - Connectors Weekly Tests | |
on: | |
schedule: | |
# 12PM UTC on Sunday is 2PM CEST, 3PM EEST, 5 PDT. | |
- cron: "0 12 * * 0" | |
workflow_dispatch: | |
inputs: | |
runs-on: | |
type: string | |
default: ci-runner-connector-nightly-xlarge-dagger-0-6-4 | |
required: true | |
test-connectors-options: | |
default: --concurrency=3 --support-level=community | |
required: true | |
run-name: "Test connectors: ${{ inputs.test-connectors-options || 'weekly build for Community connectors' }} - on ${{ inputs.runs-on || 'ci-runner-connector-nightly-xlarge-dagger-0-6-4' }}" | |
jobs: | |
test_connectors: | |
name: "Test connectors: ${{ inputs.test-connectors-options || 'weekly build for Community connectors' }} - on ${{ inputs.runs-on || 'ci-runner-connector-nightly-xlarge-dagger-0-6-4' }}" | |
timeout-minutes: 8640 # 6 days | |
runs-on: ${{ inputs.runs-on || 'ci-runner-connector-nightly-xlarge-dagger-0-6-4' }} | |
steps: | |
- name: Checkout Airbyte | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ github.event.inputs.repo }} | |
ref: ${{ github.event.inputs.gitref }} | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT | |
id: extract_branch | |
- name: Test connectors | |
uses: ./.github/actions/run-dagger-pipeline | |
with: | |
context: "master" | |
ci_job_key: "weekly_alpha_test" | |
docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} | |
gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} | |
git_branch: ${{ steps.extract_branch.outputs.branch }} | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tailscale_auth_key: ${{ secrets.TAILSCALE_AUTH_KEY }} | |
subcommand: '--show-dagger-logs connectors ${{ inputs.test-connectors-options || ''--concurrency=3 --metadata-query="(data.ab_internal.ql > 100) & (data.ab_internal.sl < 200)"'' }} test' |