Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 10 additions & 11 deletions .github/workflows/cdk-connector-compatibility-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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! <https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}|View Test Logs>"
# - 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! <https://github.com/${{github.repository}}/actions/runs/${{github.run_id}}|View Test Logs>"

- name: Authenticate as GitHub App
if: always() && steps.check-move-notify.outputs.should-notify == 'true'
Expand Down
1 change: 0 additions & 1 deletion airbyte-cdk/bulk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ final var cdkVersion = {
return props.getProperty('version', 'undefined')
}()


allprojects {
version = cdkVersion
apply plugin: 'java-library'
Expand Down
Loading