Merge commit from fork #615
Workflow file for this run
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: Test and Build | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| env: | |
| NO_PRIVATE_TEST_DATA: "true" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Build artefacts + Run Tests | |
| run: TESTBALLOON_EXCLUDE_PATTERNS=at.asitplus.attestation.supreme.TestEnv* ./gradlew allTests assemble | |
| - name: Test Report | |
| uses: dorny/test-reporter@v2 | |
| if: success() || failure() | |
| with: | |
| name: All Tests | |
| path: serverside/**/build/test-results/**/TEST*.xml,utils/**/build/test-results/**/TEST*.xml,supreme/**/build/test-results/**/TEST*.xml | |
| reporter: java-junit | |
| loader-mutation: | |
| runs-on: ubuntu-latest | |
| needs: build | |
| env: | |
| NO_PRIVATE_TEST_DATA: "true" | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - uses: actions/setup-java@v3 | |
| with: | |
| distribution: 'temurin' | |
| java-version: '17' | |
| - name: Run Loader Mutation Gate | |
| run: ./gradlew loaderMutationTest | |
| - name: Upload PIT Reports | |
| if: success() || failure() | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: loader-mutation-reports | |
| path: supreme/**/build/reports/pitest/** |