debezium/dbz#1799 Add diagnostic logs for pod failures #536
Workflow file for this run
This file contains hidden or 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
| # | |
| # Copyright Debezium Authors | |
| # | |
| # Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0 | |
| # | |
| name: Build Operator Sources | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - 3.* | |
| - 4.* | |
| paths-ignore: | |
| - '*.md' | |
| push: | |
| branches: | |
| - main | |
| - 3.* | |
| - 4.* | |
| paths-ignore: | |
| - '*.md' | |
| jobs: | |
| # Checks that all commits contain sign-offs | |
| check-signed-commits: | |
| name: Check signed commits | |
| runs-on: ubuntu-latest | |
| if: github.event_name == 'pull_request' | |
| steps: | |
| - uses: debezium/dbz/.github/actions/check-dco@main | |
| build: | |
| needs: [ check-signed-commits ] | |
| if: ${{ !cancelled() && (needs.check-signed-commits.result == 'success' || needs.check-signed-commits.result == 'skipped') }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Debezium Operator | |
| uses: actions/checkout@v6 | |
| with: | |
| path: operator | |
| - uses: ./operator/.github/actions/maven-cache | |
| - uses: ./operator/.github/actions/setup-java | |
| - uses: ./operator/.github/actions/build-operator |