Revert "ci: only run default list of graalvm tests if too many module… #288
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: | ||
| paths: | ||
| - 'gapic-generator-java-bom/**' | ||
| - 'gapic-generator-java-pom-parent/**' | ||
| - 'java-shared-dependencies/**' | ||
| name: sdk-platform-java shared-dependencies version check | ||
| env: | ||
| BUILD_SUBDIR: sdk-platform-java | ||
| 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: | ||
| - 'sdk-platform-java/**' | ||
| upper-bound-check: | ||
| needs: filter | ||
| if: ${{ needs.filter.outputs.library == 'true' }} | ||
| name: Shared Dependencies BOM upper-bound check | ||
| runs-on: ubuntu-latest | ||
| if: github.repository_owner == 'googleapis' | ||
| steps: | ||
| - uses: actions/checkout@v4 | ||
| - uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: temurin | ||
| java-version: 17 | ||
| - run: java -version | ||
| - name: Install maven modules | ||
| run: | | ||
| mvn install -B -ntp -DskipTests -Dclirr.skip -Dcheckstyle.skip | ||
| - name: Check the BOM content satisfies the upper-bound-check test case | ||
| run: mvn -B -V -ntp verify -Dcheckstyle.skip | ||
| working-directory: sdk-plaform-java/java-shared-dependencies/upper-bound-check | ||