Update dependency com.gradle:develocity-maven-extension to v2.4.1 #4129
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
| name: Windows CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - '[1-9]+.[0-9]+.x' | |
| pull_request: | |
| branches: | |
| - master | |
| - '[1-9]+.[0-9]+.x' | |
| merge_group: | |
| types: [checks_requested] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| # Windows CI only needs repository read access for checkout and setup actions. | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: "build" | |
| runs-on: windows-latest | |
| env: | |
| NATIVE_IMAGE_OPTIONS: "-H:+ReportExceptionStackTraces" | |
| strategy: | |
| matrix: | |
| java: ['25'] | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: Verify Maven wrapper checksum | |
| shell: bash | |
| run: bash .github/scripts/verify-maven-wrapper-checksum.sh | |
| - name: Cache Maven packages | |
| uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5 | |
| with: | |
| path: ~/.m2 | |
| key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2 | |
| - name: Setup GraalVM | |
| uses: graalvm/setup-graalvm@bef4b0e916c7dd079bf60fb95d49139f67e32c5f | |
| with: | |
| distribution: 'graalvm' | |
| java-version: ${{ matrix.java }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| native-image-job-reports: true | |
| - name: Windows wrapper preflight | |
| shell: cmd | |
| run: .github\scripts\windows-preflight.cmd | |
| - name: Build with Maven | |
| shell: cmd | |
| run: | | |
| .\mvnw install -Dinvoker.skip=true && .\mvnw verify | |
| env: | |
| TESTCONTAINERS_RYUK_DISABLED: true | |
| DEVELOCITY_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }} | |
| DEVELOCITY_CACHE_USERNAME: ${{ secrets.GRADLE_ENTERPRISE_CACHE_USERNAME }} | |
| DEVELOCITY_CACHE_PASSWORD: ${{ secrets.GRADLE_ENTERPRISE_CACHE_PASSWORD }} |