Update CHANGELOG.md #1260
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 | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
- release | |
paths-ignore: | |
- "README.md" | |
pull_request: | |
branches: | |
- main | |
- develop | |
- release | |
paths-ignore: | |
- "README.md" | |
jobs: | |
build_linux: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
java: ['11', '17'] | |
env: | |
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
MAVEN_USERNAME: ${{ secrets.OSSRH_USER }} | |
MAVEN_PASSWORD: ${{ secrets.OSSRH_PASSWORD }} | |
PGP_KEY_ID: ${{ secrets.PGP_KEY_ID }} | |
PGP_KEY_PASSWORD: ${{ secrets.PGP_KEY_PASSWORD }} | |
name: Build with Java ${{ matrix.java }} in Ubuntu | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
java-package: jdk | |
architecture: x64 | |
cache: 'maven' | |
server-id: ossrh # Value of the distributionManagement/repository/id field of the pom.xml | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
- name: Build with Maven | |
run: mvn -B -ff -ntp clean install | |
- name: Publish Code Coverage | |
if: github.ref == 'refs/heads/main' && matrix.java == '11' | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
flags: unittests | |
name: codecov-umbrella | |
build_macos: | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
java: [ '11', '17' ] | |
env: | |
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
name: Build with Java ${{ matrix.java }} in MacOS | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
java-package: jdk | |
architecture: x64 | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B -ff -ntp clean install | |
build_windows: | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
java: [ '11', '17' ] | |
env: | |
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
name: Build with Java ${{ matrix.java }} in Windows | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
java-package: jdk | |
architecture: x64 | |
cache: 'maven' | |
- name: Build with Maven | |
run: mvn -B -ff -ntp clean install |