Test connectors: weekly build for Alpha connectors - on dev-large-runner #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: Connectors weekly build | |
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: conn-nightly-xlarge-runner | |
required: true | |
test-connectors-options: | |
default: --concurrency=3 --release-stage=alpha | |
required: true | |
run-name: "Test connectors: ${{ inputs.test-connectors-options || 'weekly build for Alpha connectors' }} - on ${{ inputs.runs-on || 'dev-large-runner' }}" | |
jobs: | |
test_connectors: | |
name: "Test connectors: ${{ inputs.test-connectors-options || 'weekly build for Alpha connectors' }} - on ${{ inputs.runs-on || 'dev-large-runner' }}" | |
timeout-minutes: 8640 # 6 days | |
runs-on: ${{ inputs.runs-on || 'conn-nightly-xlarge-runner' }} | |
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: "nightly_builds" | |
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.GH_PAT_MAINTENANCE_OCTAVIA }} | |
subcommand: "connectors ${{ inputs.test-connectors-options || '--concurrency=3 --release-stage=alpha' }} test" |