diff --git a/.github/workflows/cdk-connector-compatibility-test.yml b/.github/workflows/cdk-connector-compatibility-test.yml index 56fc2a7e85ef..be53f0d819cf 100644 --- a/.github/workflows/cdk-connector-compatibility-test.yml +++ b/.github/workflows/cdk-connector-compatibility-test.yml @@ -106,7 +106,7 @@ jobs: id: run-unit-tests if: matrix.connector working-directory: airbyte-integrations/connectors/${{ matrix.connector }} - run: poe test-unit-tests + run: exit 1 - name: Run Integration Tests id: run-integration-tests @@ -119,20 +119,19 @@ jobs: if: always() run: | echo "should-notify=${{ - github.event_name == 'schedule' && startsWith(matrix.connector, 'destination-') && (steps.run-unit-tests.outcome == 'failure' || steps.run-integration-tests.outcome == 'failure') }}" >> $GITHUB_OUTPUT - - name: Slack Notification on Failure - if: always() && steps.check-move-notify.outputs.should-notify == 'true' - uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1 - with: - token: ${{ secrets.SLACK_BOT_TOKEN_AIRBYTE_TEAM }} - method: chat.postMessage - payload: | - channel: C09H56MT8J2 - text: "`${{ matrix.connector }}` connector tests failed when using local CDK! " +# - name: Slack Notification on Failure +# if: always() && steps.check-move-notify.outputs.should-notify == 'true' +# uses: slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a # v2.1.1 +# with: +# token: ${{ secrets.SLACK_BOT_TOKEN_AIRBYTE_TEAM }} +# method: chat.postMessage +# payload: | +# channel: C09H56MT8J2 +# text: "`${{ matrix.connector }}` connector tests failed when using local CDK! " - name: Authenticate as GitHub App if: always() && steps.check-move-notify.outputs.should-notify == 'true' diff --git a/airbyte-cdk/bulk/build.gradle b/airbyte-cdk/bulk/build.gradle index a54e2f2c8489..25735e3ce81c 100644 --- a/airbyte-cdk/bulk/build.gradle +++ b/airbyte-cdk/bulk/build.gradle @@ -17,7 +17,6 @@ final var cdkVersion = { return props.getProperty('version', 'undefined') }() - allprojects { version = cdkVersion apply plugin: 'java-library'