Merge pull request #8718 from MegaMek/Fix-8711-No-Contracts-FedCom-Era #4463
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: MekHQ CI with Code Coverage | |
| on: | |
| push: | |
| branches: [ main ] | |
| env: | |
| GRADLE_OPTS: "-Dscan.link.VCS=https://github.com/MegaMek/mekhq/commit/${{ github.sha }}" | |
| jobs: | |
| code_coverage: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| java-distribution: [ temurin ] | |
| java-version: [ 17, 21, 25 ] | |
| fail-fast: false | |
| steps: | |
| - name: Checkout Data Repo | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: megamek/mm-data | |
| path: mm-data | |
| - uses: actions/checkout@v6 | |
| with: | |
| path: mekhq | |
| - name: Checkout MegaMek | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: MegaMek/megamek | |
| path: megamek | |
| - name: Checkout MegaMekLab | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: MegaMek/megameklab | |
| path: megameklab | |
| - name: Set up ${{ matrix.java-distribution }} JDK ${{ matrix.java-version }} | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: ${{ matrix.java-distribution }} | |
| java-version: ${{ matrix.java-version }} | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v5 | |
| with: | |
| build-scan-publish: true | |
| build-scan-terms-of-use-url: "https://gradle.com/terms-of-service" | |
| build-scan-terms-of-use-agree: "yes" | |
| - name: Build with Gradle | |
| working-directory: mekhq | |
| run: ./gradlew test | |
| - name: Upload Test Logs on Failure | |
| uses: actions/upload-artifact@v6 | |
| if: failure() | |
| with: | |
| name: cd-failure-logs | |
| path: ./mekhq/MekHQ/build/reports/ | |
| - name: CodeCov.io Coverage Report | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| directory: ./mekhq/MekHQ/build/reports/jacoco/test | |
| fail_ci_if_error: false | |
| verbose: true |