Update Ubuntu for CI #193
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 | |
on: | |
push: | |
branches: | |
- master | |
- "4.3" | |
paths-ignore: | |
- "README.md" | |
- "release-notes/*" | |
pull_request: | |
branches: | |
- master | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: 'ubuntu-22.04' | |
strategy: | |
fail-fast: false | |
matrix: | |
# Alas, JDK14 can't be yet used as JUG builds for Java 6 | |
java_version: ['8', '11'] | |
env: | |
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1" | |
steps: | |
- uses: actions/[email protected] | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: "temurin" | |
java-version: ${{ matrix.java_version }} | |
cache: 'maven' | |
- name: Build | |
run: ./mvnw -B -q -ff -ntp verify | |
- name: Generate code coverage | |
if: github.event_name != 'pull_request' && matrix.java_version == '8' | |
run: ./mvnw -B -q -ff -ntp test | |
- name: Publish code coverage | |
if: github.event_name != 'pull_request' && matrix.java_version == '8' | |
uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./target/site/jacoco/jacoco.xml | |
flags: unittests |