Skip to content

[maven-release-plugin] prepare release v3.3.1.Final #1

[maven-release-plugin] prepare release v3.3.1.Final

[maven-release-plugin] prepare release v3.3.1.Final #1

name: Build Debezium (Push)
on:
push:
branches:
- main
- 1.*
- 2.*
- 3.*
- 4.*
env:
MAVEN_FULL_BUILD_PROJECTS: "\\!debezium-microbenchmark-oracle"
# Pushes to each branch will trigger a cancellation of any existing push jobs for that branch and
# will restart the build based on the latest push for that specific branch.
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
# # This job is responsible for inspecting the changes in the repository and setting specific output variables
# # that subsequent jobs can use to determine whether a particular job should be skipped or included.
# file_changes:
# name: "Detect repository changes"
# uses: ./.github/workflows/file-changes-workflow.yml
# Approx 1m
build_cache:
name: "Update Dependencies"
# needs: [ file_changes ]
# If documentation is all that changed, no need to build code on branch
# if: ${{ needs.file_changes.documentation-only-changed == 'false' }}
runs-on: ubuntu-latest
steps:
- name: Checkout Action (Core)
uses: actions/checkout@v5
with:
path: core
- name: Checkout Action (Debezium Server)
uses: actions/checkout@v5
with:
repository: debezium/debezium-server
path: server
# Always checkout based on pushed branch name in main repository
# This should always exist in the debezium-server repository.
ref: ${{ github.ref_name }}
- uses: ./core/.github/actions/setup-java
# GitHub actions seem to struggle returning actions/cache cache-hit
# Directly use the cache action here to control whether to fetch dependencies
- id: maven-cache-check
uses: actions/cache@v4
with:
path: ~/.m2/repository
key: maven-debezium-test-push-build-${{ hashFiles('core/**/pom.xml') }}
restore-keys: maven-debezium-test-push-build-${{ hashFiles('core/**/pom.xml') }}
# This step is responsible for pulling down artifacts
# Unfortunately due to the nature of how some of the maven workflows work, the only reliable way
# to guarantee fully seeding the maven cache is to run a full build. This step does not execute
# tests, formatting, checkstyle, nor import sorts.
#
# This check is conditioned so that if the cache-key was not found, we will execute this step.
# If the cache-key was found, this means we cannot update the cache and therefore we should
# not need to explicitly run this step. This should improve response of format/checkstyle
# errors to users faster.
#
# This job also explicitly excludes the "debezium-microbenchmark-oracle" module temporarily.
# There is a dependency on xstream.jar for this module that should be fixed and made to not
# be required so that the module can be built on GitHub Actions.
- name: Download dependencies (Core)
if: steps.maven-cache-check.outputs.cache-hit != 'true'
run: >
./core/mvnw -B -ntp clean install -f core/pom.xml
-pl ${{ env.MAVEN_FULL_BUILD_PROJECTS }}
-Dformat.skip=true
-Dcheckstyle.skip=true
-Dorg.slf4j.simpleLogger.showDateTime=true
-Dorg.slf4j.simpleLogger.dateTimeFormat="YYYY-MM-dd HH:mm:ss,SSS"
-DskipTests=true
-DskipITs=true
- name: Download dependencies (Debezium Server)
if: steps.maven-cache-check.outputs.cache-hit != 'true'
run: >
./server/mvnw -B -ntp clean install -f server/pom.xml
-Dformat.skip=true
-Dcheckstyle.skip=true
-Dorg.slf4j.simpleLogger.showDateTime=true
-Dorg.slf4j.simpleLogger.dateTimeFormat="YYYY-MM-dd HH:mm:ss,SSS"
-DskipTests=true
-DskipITs=true
# Approx 1m
check_style:
name: "Checkstyle and Formatting"
needs: [ build_cache ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/checkstyle-format
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}
# Approx 40m each
build_mongodb:
name: "MongoDB"
needs: [ check_style ]
uses: ./.github/workflows/connector-mongodb-workflow.yml
with:
maven-cache-key: maven-debezium-test-push-build
max-parallel: 1
# Approx 40m each
build_mysql:
name: "MySQL"
needs: [ check_style ]
uses: ./.github/workflows/connector-mysql-workflow.yml
with:
maven-cache-key: maven-debezium-test-push-build
max-parallel: 2
# Approx 40m each
build_mariadb:
name: "MariaDB"
needs: [ check_style ]
uses: ./.github/workflows/connector-mariadb-workflow.yml
with:
maven-cache-key: maven-debezium-test-push-build
max-parallel: 1
# Approx 40m each
build_postgresql:
name: "PostgreSQL"
needs: [ check_style ]
uses: ./.github/workflows/connector-postgresql-workflow.yml
with:
maven-cache-key: maven-debezium-test-push-build
max-parallel: 1
# Approx 1h 45m
build_sqlserver:
name: "SQL Server"
needs: [ check_style ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/build-debezium-sqlserver
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}
# Approx 6m
build_oracle:
name: "Oracle"
needs: [ check_style ]
uses: ./.github/workflows/connector-oracle-workflow.yml
with:
maven-cache-key: maven-debezium-test-push-build
max-parallel: 1
# Approx 2m
build_outbox:
name: "Quarkus Outbox Extension"
needs: [ check_style, build_oracle ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/build-debezium-outbox
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}
build_extensions:
name: "Debezium Quarkus Extensions"
needs: [ check_style, build_postgresql ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/build-quarkus-extensions
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}
# Approx 2m
build_schema_generator:
name: "Schema Generator"
needs: [ check_style ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/build-debezium-schema-generator
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}
# Approx 5m
build_debezium_testing:
name: "Testing Module"
needs: [ check_style, build_schema_generator ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/build-debezium-testing
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}
# Approx 3m
build_storage:
name: "Storage Module"
needs: [ check_style, build_debezium_testing ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/build-debezium-storage
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}
# Approx 25m
build_cassandra:
name: "Cassandra"
needs: [ check_style, build_debezium_server ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action (Debezium Core)
uses: actions/checkout@v5
with:
path: core
- name: Checkout Action (Cassandra)
uses: actions/checkout@v5
with:
repository: debezium/debezium-connector-cassandra
path: cassandra
ref: ${{ github.ref_name }}
- uses: ./core/.github/actions/setup-java
- uses: ./core/.github/actions/maven-cache
with:
# We specifically only use the hash of the pom files from the core repository
key: maven-debezium-test-push-build-${{ hashFiles('core/**/pom.xml') }}
- uses: ./core/.github/actions/build-debezium-cassandra
with:
path-core: core
path-cassandra: cassandra
# Approx 1h
build_db2:
name: "Db2"
needs: [ check_style ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action (Debezium Core)
uses: actions/checkout@v5
with:
path: core
- name: Checkout Action (Db2)
uses: actions/checkout@v5
with:
repository: debezium/debezium-connector-db2
path: db2
ref: ${{ github.ref_name }}
- uses: ./core/.github/actions/setup-java
- uses: ./core/.github/actions/maven-cache
with:
# We specifically only use the hash of the pom files from the core repository
key: maven-debezium-test-push-build-${{ hashFiles('core/**/pom.xml') }}
- uses: ./core/.github/actions/build-debezium-db2
with:
path-core: core
path-db2: db2
# Approx 45m
build_informix:
name: "Informix"
needs: [ check_style ]
uses: ./.github/workflows/connector-informix-workflow.yml
with:
maven-cache-key: maven-debezium-test-push-build
max-parallel: 1
checkout-ref: ${{ github.ref_name }}
build_ibmi:
name: "IBMi"
needs: [ check_style ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action (Debezium Core)
uses: actions/checkout@v5
with:
path: core
- name: Checkout Action (IBMi)
uses: actions/checkout@v5
with:
repository: debezium/debezium-connector-ibmi
path: ibmi
ref: ${{ github.ref_name }}
- uses: ./core/.github/actions/setup-java
- uses: ./core/.github/actions/maven-cache
with:
# We specifically only use the hash of the pom files from the core repository
key: maven-debezium-test-push-build-${{ hashFiles('core/**/pom.xml') }}
- uses: ./core/.github/actions/build-debezium-ibmi
with:
path-core: core
path-ibmi: ibmi
# Approx 20m
build_vitess:
name: "Vitess"
needs: [ check_style, build_storage ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action (Debezium Core)
uses: actions/checkout@v5
with:
path: core
- name: Checkout Action (Vitess)
uses: actions/checkout@v5
with:
repository: debezium/debezium-connector-vitess
path: vitess
ref: ${{ github.ref_name }}
- uses: ./core/.github/actions/setup-java
- uses: ./core/.github/actions/maven-cache
with:
# We specifically only use the hash of the pom files from the core repository
key: maven-debezium-test-push-build-${{ hashFiles('core/**/pom.xml') }}
- uses: ./core/.github/actions/build-debezium-vitess
with:
path-core: core
path-vitess: vitess
# Approx 7m
build_spanner:
name: "Spanner"
needs: [ check_style, build_vitess ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action (Debezium Core)
uses: actions/checkout@v5
with:
path: core
- name: Checkout Action (Spanner)
uses: actions/checkout@v5
with:
repository: debezium/debezium-connector-spanner
path: spanner
ref: ${{ github.ref_name }}
- uses: ./core/.github/actions/setup-java
- uses: ./core/.github/actions/maven-cache
with:
# We specifically only use the hash of the pom files from the core repository
key: maven-debezium-test-push-build-${{ hashFiles('core/**/pom.xml') }}
- uses: ./core/.github/actions/build-debezium-spanner
with:
path-core: core
path-spanner: spanner
# Approx 1m
build_jdbc:
name: "JDBC"
needs: [ check_style, build_spanner ]
uses: ./.github/workflows/connector-jdbc-workflow.yml
with:
maven-cache-key: maven-debezium-test-push-build
# Approx 26m
build_debezium_server:
name: "Debezium Server"
needs: [ check_style, build_jdbc ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action (Debezium Core)
uses: actions/checkout@v5
with:
path: core
- name: Checkout Action (Debezium Server)
uses: actions/checkout@v5
with:
repository: debezium/debezium-server
path: server
ref: ${{ github.ref_name }}
- uses: ./core/.github/actions/setup-java
- uses: ./core/.github/actions/maven-cache
with:
# We specifically only use the hash of the pom files from the core repository
key: maven-debezium-test-push-build-${{ hashFiles('core/**/pom.xml') }}
- uses: ./core/.github/actions/build-debezium-server
with:
path-core: core
path-server: server
build_ai:
name: "Debezium AI module"
needs: [ check_style ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/build-debezium-ai
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}
build_openlineage:
name: "Debezium OpenLineage module"
needs: [ check_style ]
runs-on: ubuntu-latest
steps:
- name: Checkout Action
uses: actions/checkout@v5
- uses: ./.github/actions/build-debezium-openlineage
with:
maven-cache-key: maven-debezium-test-push-build-${{ hashFiles('**/pom.xml') }}