From 1e133765cf85864c8ad97e50ca581953e9a098b0 Mon Sep 17 00:00:00 2001 From: "Pedro S. Lopez" Date: Fri, 4 Aug 2023 15:57:44 -0400 Subject: [PATCH 1/2] enable sentry in test pipeline --- .github/workflows/airbyte-ci-tests.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/airbyte-ci-tests.yml b/.github/workflows/airbyte-ci-tests.yml index de031c4e948a..1b3982a529bd 100644 --- a/.github/workflows/airbyte-ci-tests.yml +++ b/.github/workflows/airbyte-ci-tests.yml @@ -29,5 +29,6 @@ jobs: docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} gcs_credentials: ${{ secrets.METADATA_SERVICE_PROD_GCS_CREDENTIALS }} + sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} github_token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }} subcommand: "tests connectors/pipelines" From 06f5852090d405443dfb03084eb73d937e8f41d3 Mon Sep 17 00:00:00 2001 From: "Pedro S. Lopez" Date: Fri, 4 Aug 2023 16:15:18 -0400 Subject: [PATCH 2/2] add to actual cmds --- .github/workflows/connectors_nightly_build.yml | 1 + .github/workflows/connectors_tests.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/connectors_nightly_build.yml b/.github/workflows/connectors_nightly_build.yml index 443c55571ee8..884782a630ba 100644 --- a/.github/workflows/connectors_nightly_build.yml +++ b/.github/workflows/connectors_nightly_build.yml @@ -38,6 +38,7 @@ jobs: docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} + sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} git_branch: ${{ steps.extract_branch.outputs.branch }} github_token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }} subcommand: "connectors ${{ inputs.test-connectors-options || '--concurrency=8 --release-stage=generally_available --release-stage=beta' }} test" diff --git a/.github/workflows/connectors_tests.yml b/.github/workflows/connectors_tests.yml index 3d39303dc164..a63bd143e2fe 100644 --- a/.github/workflows/connectors_tests.yml +++ b/.github/workflows/connectors_tests.yml @@ -64,6 +64,7 @@ jobs: docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} + 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_OCTAVIA }} @@ -76,6 +77,7 @@ jobs: docker_hub_password: ${{ secrets.DOCKER_HUB_PASSWORD }} docker_hub_username: ${{ secrets.DOCKER_HUB_USERNAME }} gcp_gsm_credentials: ${{ secrets.GCP_GSM_CREDENTIALS }} + sentry_dsn: ${{ secrets.SENTRY_AIRBYTE_CI_DSN }} git_branch: ${{ github.head_ref }} git_revision: ${{ steps.fetch_last_commit_id_pr.outputs.commit_id }} github_token: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }}