-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #869 from uhafner/autograding@v3
Use autograding v3
- Loading branch information
Showing
2 changed files
with
124 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
name: 'Autograding PR' | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: [ubuntu-latest] | ||
name: Build, test and autograde on Ubuntu | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK ${{ matrix.jdk }} | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: 21 | ||
check-latest: true | ||
cache: 'maven' | ||
- name: Set up Maven | ||
uses: stCarolas/[email protected] | ||
with: | ||
maven-version: 3.9.5 | ||
- name: Build with Maven | ||
env: | ||
BROWSER: chrome-container | ||
run: mvn -V --color always -ntp clean verify --file pom.xml '-Djenkins.test.timeout=5000' '-Dgpg.skip' -Ppit | tee maven.log | ||
- uses: jwalton/gh-find-current-pr@v1 | ||
id: pr | ||
- name: Run Autograding | ||
uses: uhafner/autograding-github-action@v3 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
pr-number: ${{ steps.pr.outputs.number }} | ||
checks-name: 'Quality Checks' | ||
config: > | ||
{ | ||
"tests": { | ||
"tools": [ | ||
{ | ||
"id": "test", | ||
"name": "Unittests", | ||
"pattern": "**/target/*-reports/TEST*.xml" | ||
} | ||
], | ||
"name": "JUnit", | ||
"passedImpact": 0, | ||
"skippedImpact": -1, | ||
"failureImpact": -5, | ||
"maxScore": 100 | ||
}, | ||
"analysis": { | ||
"name": "Warnings", | ||
"id": "warnings", | ||
"tools": [ | ||
{ | ||
"id": "checkstyle", | ||
"name": "CheckStyle", | ||
"pattern": "**/target/checkstyle-result.xml" | ||
}, | ||
{ | ||
"id": "pmd", | ||
"name": "PMD", | ||
"pattern": "**/target/pmd.xml" | ||
}, | ||
{ | ||
"id": "error-prone", | ||
"name": "Error Prone", | ||
"pattern": "**/maven.log" | ||
}, | ||
{ | ||
"id": "spotbugs", | ||
"name": "SpotBugs", | ||
"pattern": "**/target/spotbugsXml.xml" | ||
} | ||
], | ||
"errorImpact": -1, | ||
"highImpact": -1, | ||
"normalImpact": -1, | ||
"lowImpact": -1, | ||
"maxScore": 100 | ||
}, | ||
"coverage": [ | ||
{ | ||
"tools": [ | ||
{ | ||
"id": "jacoco", | ||
"name": "Line Coverage", | ||
"metric": "line", | ||
"pattern": "**/target/site/jacoco/jacoco.xml" | ||
}, | ||
{ | ||
"id": "jacoco", | ||
"name": "Branch Coverage", | ||
"metric": "branch", | ||
"pattern": "**/target/site/jacoco/jacoco.xml" | ||
} | ||
], | ||
"name": "JaCoCo", | ||
"maxScore": 100, | ||
"missedPercentageImpact": -1 | ||
}, | ||
{ | ||
"tools": [ | ||
{ | ||
"id": "pit", | ||
"name": "Mutation Coverage", | ||
"metric": "mutation", | ||
"pattern": "**/target/pit-reports/mutations.xml" | ||
} | ||
], | ||
"name": "PIT", | ||
"maxScore": 100, | ||
"missedPercentageImpact": -1 | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,12 +30,12 @@ jobs: | |
uses: codecov/[email protected] | ||
with: | ||
token: ${{secrets.CODECOV_TOKEN}} | ||
- name: Autograding | ||
uses: uhafner/autograding-github-action@v2.1.0 | ||
- name: Run Autograding | ||
uses: uhafner/autograding-github-action@v3 | ||
with: | ||
TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CHECKS_NAME: 'Grading Badges' | ||
CONFIG: > | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
checks-name: 'Grading Badges' | ||
config: > | ||
{ | ||
"tests": { | ||
"tools": [ | ||
|