Bump org.jenkins-ci:acceptance-test-harness from 5941.v95f3439136c7 to 5957.v7c0e2f7ca_63e #247
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: 'PIT' | |
on: | |
pull_request: | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
name: Create and archive PIT report | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
check-latest: true | |
cache: 'maven' | |
- name: Set up Maven | |
uses: stCarolas/setup-maven@v5 | |
with: | |
maven-version: 3.9.9 | |
- name: Generate coverage with JaCoCo | |
run: mvn -V --color always -ntp clean verify -Ppit -Pci '-Dfeatures=+GIT(from[HEAD~1]),+gitci' | |
- name: Aggregate PIT coverage files | |
run: mvn -e -B com.arcmutate:pitest-git-maven-plugin:aggregate | |
- name: Upload PIT results as artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pitest | |
path: target/pit-reports-ci/ |