diff --git a/.github/workflows/publish-command.yml b/.github/workflows/publish-command.yml index 02dede174cc..c79a899b755 100644 --- a/.github/workflows/publish-command.yml +++ b/.github/workflows/publish-command.yml @@ -191,6 +191,10 @@ jobs: MONGODB_TEST_CREDS: ${{ secrets.MONGODB_TEST_CREDS }} SOURCE_ONESIGNAL_TEST_CREDS: ${{ secrets.SOURCE_ONESIGNAL_TEST_CREDS }} SOURCE_SALESLOFT_TEST_CREDS: ${{ secrets.SOURCE_SALESLOFT_TEST_CREDS }} + SOURCE_AMAZON_SQS_TEST_CREDS: ${{ secrets.SOURCE_AMAZON_SQS_TEST_CREDS }} + SOURCE_FRESHSERVICE_TEST_CREDS: ${{ secrets.SOURCE_FRESHSERVICE_TEST_CREDS }} + SOURCE_LEMLIST_TEST_CREDS: ${{ secrets.SOURCE_LEMLIST_TEST_CREDS }} + SOURCE_STRAVA_TEST_CREDS: ${{ secrets.SOURCE_STRAVA_TEST_CREDS }} - run: | echo "$SPEC_CACHE_SERVICE_ACCOUNT_KEY" > spec_cache_key_file.json && docker login -u airbytebot -p ${DOCKER_PASSWORD} ./tools/integrations/manage.sh publish airbyte-integrations/${{ github.event.inputs.connector }} ${{ github.event.inputs.run-tests }} --publish_spec_to_cache diff --git a/.github/workflows/test-command.yml b/.github/workflows/test-command.yml index 0e543a97e9a..18808933d48 100644 --- a/.github/workflows/test-command.yml +++ b/.github/workflows/test-command.yml @@ -186,6 +186,10 @@ jobs: MONGODB_TEST_CREDS: ${{ secrets.MONGODB_TEST_CREDS }} SOURCE_ONESIGNAL_TEST_CREDS: ${{ secrets.SOURCE_ONESIGNAL_TEST_CREDS }} SOURCE_SALESLOFT_TEST_CREDS: ${{ secrets.SOURCE_SALESLOFT_TEST_CREDS }} + SOURCE_AMAZON_SQS_TEST_CREDS: ${{ secrets.SOURCE_AMAZON_SQS_TEST_CREDS }} + SOURCE_FRESHSERVICE_TEST_CREDS: ${{ secrets.SOURCE_FRESHSERVICE_TEST_CREDS }} + SOURCE_LEMLIST_TEST_CREDS: ${{ secrets.SOURCE_LEMLIST_TEST_CREDS }} + SOURCE_STRAVA_TEST_CREDS: ${{ secrets.SOURCE_STRAVA_TEST_CREDS }} - run: | ./tools/bin/ci_integration_test.sh ${{ github.event.inputs.connector }} name: test ${{ github.event.inputs.connector }} diff --git a/tools/bin/ci_credentials.sh b/tools/bin/ci_credentials.sh index fd00917d641..69147692d89 100755 --- a/tools/bin/ci_credentials.sh +++ b/tools/bin/ci_credentials.sh @@ -49,6 +49,7 @@ write_standard_creds base-normalization "$AWS_REDSHIFT_INTEGRATION_TEST_CREDS" " write_standard_creds base-normalization "$AWS_ORACLE_INTEGRATION_TEST_CREDS" "oracle.json" write_standard_creds source-amazon-seller-partner "$AMAZON_SELLER_PARTNER_TEST_CREDS" +write_standard_creds source-amazon-sqs "$SOURCE_AMAZON_SQS_TEST_CREDS" write_standard_creds source-amplitude "$AMPLITUDE_INTEGRATION_TEST_CREDS" write_standard_creds source-apify-dataset "$APIFY_INTEGRATION_TEST_CREDS" write_standard_creds source-amazon-ads "$AMAZON_ADS_TEST_CREDS" @@ -71,6 +72,7 @@ write_standard_creds source-file "$AWS_S3_INTEGRATION_TEST_CREDS" "aws.json" write_standard_creds source-file "$AZURE_STORAGE_INTEGRATION_TEST_CREDS" "azblob.json" write_standard_creds source-file-secure "$FILE_SECURE_HTTPS_TEST_CREDS" write_standard_creds source-freshdesk "$FRESHDESK_TEST_CREDS" +write_standard_creds source-freshservice "$SOURCE_FRESHSERVICE_TEST_CREDS" write_standard_creds source-facebook-marketing "$FACEBOOK_MARKETING_TEST_INTEGRATION_CREDS" write_standard_creds source-facebook-pages "$FACEBOOK_PAGES_INTEGRATION_TEST_CREDS" write_standard_creds source-gitlab "$GITLAB_INTEGRATION_TEST_CREDS" @@ -96,6 +98,7 @@ write_standard_creds source-intercom "$INTERCOM_INTEGRATION_TEST_CREDS" write_standard_creds source-iterable "$ITERABLE_INTEGRATION_TEST_CREDS" write_standard_creds source-jira "$JIRA_INTEGRATION_TEST_CREDS" write_standard_creds source-klaviyo "$KLAVIYO_TEST_CREDS" +write_standard_creds source-lemlist "$SOURCE_LEMLIST_TEST_CREDS" write_standard_creds source-lever-hiring "$LEVER_HIRING_INTEGRATION_TEST_CREDS" write_standard_creds source-looker "$LOOKER_INTEGRATION_TEST_CREDS" write_standard_creds source-linkedin-ads "$SOURCE_LINKEDIN_ADS_TEST_CREDS" @@ -135,6 +138,7 @@ write_standard_creds source-smartsheets "$SMARTSHEETS_TEST_CREDS" write_standard_creds source-snapchat-marketing "$SOURCE_SNAPCHAT_MARKETING_CREDS" write_standard_creds source-snowflake "$SNOWFLAKE_INTEGRATION_TEST_CREDS" "config.json" write_standard_creds source-square "$SOURCE_SQUARE_CREDS" +write_standard_creds source-strava "$SOURCE_STRAVA_TEST_CREDS" write_standard_creds source-stripe "$SOURCE_STRIPE_CREDS" write_standard_creds source-stripe "$STRIPE_INTEGRATION_CONNECTED_ACCOUNT_TEST_CREDS" "connected_account_config.json" write_standard_creds source-surveymonkey "$SURVEYMONKEY_TEST_CREDS"