Merge branch '2.18' #3786
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.18" | |
paths-ignore: | |
- "README.md" | |
- "release-notes/*" | |
pull_request: | |
branches: | |
- master | |
- "3.0" | |
- "2.18" | |
paths-ignore: | |
- "README.md" | |
- "release-notes/*" | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
java_version: ['8', '11', '17', '21', '22'] | |
os: ['ubuntu-22.04'] | |
include: | |
- java_version: '8' | |
os: 'ubuntu-22.04' | |
release_build: 'R' | |
- java_version: '8' | |
os: 'windows-latest' | |
is_windows: 'W' | |
env: | |
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Set up JDK | |
uses: actions/setup-java@6a0805fcefea3d4657a47ac4c165951e33482018 # v4.2.2 | |
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 | |
run: ./mvnw -B -ff -ntp verify | |
- name: Extract project Maven version | |
id: projectVersion | |
if: ${{ !matrix.is_windows }} | |
run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.4.1:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT | |
- name: Verify Android SDK Compatibility | |
if: ${{ matrix.release_build }} | |
run: ./mvnw -B -q -ff -ntp -DskipTests animal-sniffer:check | |
- name: Deploy snapshot | |
if: ${{ github.event_name != 'pull_request' && matrix.release_build && 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.release_build }} | |
run: ./mvnw -B -q -ff -ntp test | |
- name: Publish code coverage | |
if: ${{ github.event_name != 'pull_request' && matrix.release_build }} | |
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./target/site/jacoco/jacoco.xml | |
flags: unittests | |
trigger-dep-build-v2: | |
name: Trigger v2 dep builds | |
needs: [build] | |
# Only for pushes to default branch | |
if: ${{ github.event_name == 'push' && github.ref_name == github.event.repository.default_branch }} | |
uses: ./.github/workflows/trigger_dep_builds_v2.yml | |
secrets: | |
token: ${{ secrets.REPO_DISPATCH }} | |
trigger-dep-build-v3: | |
name: Trigger v3 dep builds | |
needs: [build] | |
# Only for pushes to default branch | |
if: ${{ github.event_name == 'push' && github.ref_name == 'master' }} | |
uses: ./.github/workflows/trigger_dep_builds_v3.yml | |
secrets: | |
token: ${{ secrets.REPO_DISPATCH }} |