DBZ 3720 Error with debezium.sink.pulsar.client.serviceUrl and debezium-server version 1.6 #1250
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Connector Cassandra | |
on: | |
push: | |
paths: | |
- 'debezium-core/**' | |
- 'debezium-api/**' | |
- 'debezium-parent/pom.xml' | |
- 'debezium-bom/pom.xml' | |
- 'pom.xml' | |
- '.github/workflows/cassandra-workflow.yml' | |
pull_request: | |
paths: | |
- 'debezium-core/**' | |
- 'debezium-api/**' | |
- 'debezium-parent/pom.xml' | |
- 'debezium-bom/pom.xml' | |
- 'pom.xml' | |
- '.github/workflows/cassandra-workflow.yml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Core | |
uses: actions/checkout@v2 | |
with: | |
path: core | |
- name: Checkout Cassandra | |
uses: actions/checkout@v2 | |
with: | |
repository: debezium/debezium-connector-cassandra | |
path: cassandra | |
- name: Cache Maven Packages | |
uses: actions/cache@v2 | |
with: | |
path: ~/.m2 | |
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2 | |
- name: Build Debezium Core | |
run: mvn clean install -f core/pom.xml -pl debezium-core -am -DskipTests -DskipITs -Dformat.formatter.goal=validate -Dformat.imports.goal=check -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Build Debezium Connector Cassandra | |
run: mvn clean install -f cassandra/pom.xml -Passembly -Dformat.formatter.goal=validate -Dformat.imports.goal=check -Dmaven.wagon.http.pool=false -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 |