Post-release dep version bump #552
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: Build and Deploy Snapshot | |
| on: | |
| push: | |
| branches: ['3.*'] | |
| paths-ignore: | |
| - "README.md" | |
| - "release-notes/*" | |
| pull_request: | |
| paths-ignore: | |
| - "README.md" | |
| - "release-notes/*" | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: "build (JDK ${{ matrix.java_version }}, Joda ${{ matrix.joda_version }})" | |
| runs-on: 'ubuntu-24.04' | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| java_version: ['17', '21', '25'] | |
| # NOTE: would ideally use vars/constants but those do not display well | |
| # hence hard-coded as: MIN, DEFAULT/MAX -- publish SNAPSHOT with DEFAULT | |
| joda_version: ['2.12.7', '2.14.1'] | |
| include: | |
| - java_version: '17' | |
| joda_version: '2.14.1' | |
| snapshot: 1 | |
| env: | |
| JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 | |
| - name: Set up JDK | |
| uses: actions/setup-java@1bcf9fb12cf4aa7d266a90ae39939e61372fe520 # v5.4.0 | |
| with: | |
| distribution: 'temurin' | |
| java-version: ${{ matrix.java_version }} | |
| cache: 'maven' | |
| server-id: central-snapshots | |
| server-username: CI_DEPLOY_USERNAME | |
| server-password: CI_DEPLOY_PASSWORD | |
| # See https://github.com/actions/setup-java/blob/v2/docs/advanced-usage.md#Publishing-using-Apache-Maven | |
| # gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import | |
| # gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase | |
| - name: Build | |
| # Note: build separately first with default Joda | |
| run: ./mvnw -B -q -ff -ntp -DskipTests clean package | |
| - name: Test | |
| # Note: actual testing to use matrix-version of Joda | |
| run: ./mvnw -B -q -ff -ntp -Dversion.joda=${{ matrix.joda_version }} surefire:test | |
| - name: Extract project Maven version | |
| id: projectVersion | |
| run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.5.1:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT | |
| - name: Deploy snapshot | |
| if: ${{ github.event_name != 'pull_request' && matrix.snapshot && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }} | |
| env: | |
| CI_DEPLOY_USERNAME: ${{ secrets.CENTRAL_DEPLOY_USERNAME }} | |
| CI_DEPLOY_PASSWORD: ${{ secrets.CENTRAL_DEPLOY_PASSWORD }} | |
| # MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }} | |
| run: ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy | |
| - name: Generate code coverage | |
| if: ${{ github.event_name != 'pull_request' && matrix.snapshot && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }} | |
| run: ./mvnw -B -q -ff -ntp test | |
| - name: Publish code coverage | |
| if: ${{ github.event_name != 'pull_request' && matrix.snapshot && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }} | |
| uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| files: ./target/site/jacoco/jacoco.xml | |
| flags: unittests |