diff --git a/.github/workflows/cdk-connector-compatibility-test.yml b/.github/workflows/cdk-connector-compatibility-test.yml index fdabf5951c79..4a266e374a0d 100644 --- a/.github/workflows/cdk-connector-compatibility-test.yml +++ b/.github/workflows/cdk-connector-compatibility-test.yml @@ -23,7 +23,7 @@ jobs: - name: Generate Connector Matrix id: generate-matrix - run: echo "connectors_matrix=$(tools/bin/bulk-cdk/get-certified-connectors.sh))" | tee -a $GITHUB_OUTPUT + run: echo "connectors_matrix=$(tools/bin/bulk-cdk/get-certified-connectors.sh)" | tee -a $GITHUB_OUTPUT outputs: connectors-matrix: ${{ steps.generate-matrix.outputs.connectors_matrix }} @@ -38,7 +38,8 @@ jobs: DD_TAGS: "connector.name:${{ matrix.connector }}" strategy: - matrix: ${{ fromJson(needs.generate-matrix.outputs.connectors-matrix) }} + matrix: + connector: ${{ fromJson(needs.generate-matrix.outputs.connectors-matrix) }} max-parallel: 5 # Limit number of parallel jobs fail-fast: false # Don't stop on first failure steps: 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'