Skip to content

Merge branch '1.6'

Merge branch '1.6' #66

Workflow file for this run

name: Build
on:
push:
branches:
- master
- "1.6"
paths-ignore:
- "README.md"
- "release-notes/*"
pull_request:
branches:
- master
- "1.6"
permissions:
contents: read
jobs:
build:
runs-on: 'ubuntu-22.04'
strategy:
fail-fast: false
matrix:
# Alas, JDK14 can't be yet used while build is for Java 6
java_version: ['8', '11', '17']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: Set up JDK
uses: actions/setup-java@3a4f6e1af504cf6a31855fa899c6aa5355ba6c12 # v4.7.0
with:
distribution: "temurin"
java-version: ${{ matrix.java_version }}
cache: 'maven'
- name: Build
run: ./mvnw -B -ff -ntp clean 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@13ce06bfc6bbe3ecf90edbbf1bc32fe5978ca1d3 # v5.3.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./target/site/jacoco/jacoco.xml
flags: unittests