MODCLUSTER-795 Publish JaCoCo code coverage reports through CI pipeline + MODCLUSTER-814 Missing code-coverage report for Tomcat 10.1 integration module #707
Workflow file for this run
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: CI | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
ci: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ ubuntu-latest, windows-latest, macos-latest ] | |
# Keep this list as: all supported LTS JDKs, the latest GA JDK, and the latest EA JDK (if available). | |
java: [ 11, 17, 21, 22-ea ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK ${{ matrix.java }} | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: ${{ matrix.java }} | |
- name: Cache local Maven repository | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Build (with coverage) with Maven using JDK ${{ matrix.java }} | |
run: mvn -B verify -P coverage | |
- name: Upload JaCoCo report | |
uses: actions/upload-artifact@v2 | |
if: ${{ matrix.java == '11' && matrix.os == 'ubuntu-latest'}} | |
with: | |
name: jacoco | |
path: code-coverage/target/site/jacoco-aggregate |