refactor(bigquery-jdbc): optimize thread management and unify discovery logic in DatabaseMetaData methods
#122
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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| name: java-cloud-bom ci | |
| env: | |
| BUILD_SUBDIR: java-cloud-bom | |
| jobs: | |
| filter: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| library: ${{ steps.filter.outputs.library }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: dorny/paths-filter@v3 | |
| id: filter | |
| with: | |
| filters: | | |
| library: | |
| - 'java-cloud-bom/**' | |
| - 'sdk-platform-java/**' | |
| - 'google-auth-library-java/**' | |
| dashboard: | |
| needs: filter | |
| if: ${{ needs.filter.outputs.library == 'true' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| cache: maven | |
| - run: java -version | |
| - run: .kokoro/dashboard.sh | |
| env: | |
| JOB_TYPE: dashboard-units-check | |
| shared-dependencies-convergence: | |
| needs: filter | |
| if: ${{ needs.filter.outputs.library == 'true' && github.repository_owner == 'googleapis' && github.head_ref == 'release-please--branches--main' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 11 | |
| cache: maven | |
| - run: java -version | |
| - run: .kokoro/dashboard.sh | |
| env: | |
| JOB_TYPE: dependency-convergence-check |