Merge branch '2.19' #419
This file contains 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: | |
- master | |
- "3.0" | |
- "2.19" | |
paths-ignore: | |
- "README.md" | |
- "release-notes/*" | |
pull_request: | |
branches: | |
- master | |
- "3.0" | |
- "2.19" | |
paths-ignore: | |
- "README.md" | |
- "release-notes/*" | |
env: | |
GUAVA_DEFAULT: '33.1.0-jre' | |
GUAVA_MIN: '25.1-jre' | |
GUAVA_MAX: '33.1.0-jre' | |
jobs: | |
build: | |
runs-on: 'ubuntu-20.04' | |
strategy: | |
fail-fast: false | |
matrix: | |
java_version: ['8', '17', '21'] | |
guava_version: [ $GUAVA_DEFAULT, $GUAVA_MIN, $GUAVA_MAX ] | |
# Indicate combination for which Snapshot build enabled | |
include: | |
- java_version: '8' | |
guava_version: $GUAVA_DEFAULT | |
snapshot: 1 | |
env: | |
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up JDK | |
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0 | |
with: | |
distribution: 'temurin' | |
java-version: ${{ matrix.java_version }} | |
cache: 'maven' | |
server-id: sonatype-nexus-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 Guava | |
run: ./mvnw -B -q -ff -ntp -DskipTests clean package | |
- name: Test | |
# Note: actual testing to use matrix-version of Guava | |
run: ./mvnw -B -q -ff -ntp -Dversion.guava=${{ matrix.guava_version }} surefire:test | |
- name: Extract project Maven version | |
id: projectVersion | |
run: echo ::set-output name=version::$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.3.0:evaluate -DforceStdout -Dexpression=project.version -q) | |
- name: Deploy snapshot | |
if: ${{ github.event_name != 'pull_request' && matrix.snapshot && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }} | |
env: | |
CI_DEPLOY_USERNAME: ${{ secrets.CI_DEPLOY_USERNAME3 }} | |
CI_DEPLOY_PASSWORD: ${{ secrets.CI_DEPLOY_PASSWORD3 }} | |
# 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@b9fd7d16f6d7d1b5d2bec1a2887e65ceed900238 # v4.6.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./target/site/jacoco/jacoco.xml | |
flags: unittests |