aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-02-05 01:57:41 +0530
committerGitHub <noreply@github.com>2022-02-05 01:57:41 +0530
commit664e1fbba06792c82ad2ce71d16ca687077e9c9a (patch)
treec4dffa3e696538e8b14d41b5679cd5b981703ac7 /.github
parent2b293e58056ea897c305bd39e21b42f5cd4d1a62 (diff)
Begin rework for configuration cache compatibility (#1709)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/pull_request.yml54
1 files changed, 0 insertions, 54 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml
index 4482384a..faf39eb9 100644
--- a/.github/workflows/pull_request.yml
+++ b/.github/workflows/pull_request.yml
@@ -188,57 +188,3 @@ jobs:
uses: gradle/gradle-build-action@v2.1.3
with:
arguments: lintDebug
-
- code-coverage:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout repository
- uses: actions/checkout@v2.4.0
- with:
- fetch-depth: 0
-
- - name: Check if relevant files have changed
- uses: actions/github-script@v5.1.0
- id: service-changed
- with:
- result-encoding: string
- script: |
- const script = require('.github/check-changed-files.js')
- return await script({github, context})
-
- - name: Set up JDK
- if: ${{ steps.service-changed.outputs.result == 'true' }}
- uses : actions/setup-java@v2.4.0
- with :
- distribution : 'zulu'
- java-version : '17'
- cache: 'gradle'
-
- - name: Copy CI gradle.properties
- if: ${{ steps.service-changed.outputs.result == 'true' }}
- run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
-
- - name: Generate coverage reports with kotlinx-kover
- if: ${{ steps.service-changed.outputs.result == 'true' }}
- uses: gradle/gradle-build-action@v2.1.3
- with:
- arguments: koverXmlReport
-
- - name: Export coverage XMLs
- if: ${{ steps.service-changed.outputs.result == 'true' }}
- id: coverage-export
- shell: bash
- run: |
- REPORTS="$(find ./build/coverage-reports/ -maxdepth 1 -type f -printf "${GITHUB_WORKSPACE}/%p," -name "*.xml")"
- REPORTS="${REPORTS::${#REPORTS}-1}"
- echo ::set-output name=REPORT_PATHS::${REPORTS}
-
- - name: Publish JaCoCo report to PR
- if: false
- uses: madrapps/jacoco-report@v1.2
- with:
- paths: ${{ steps.coverage-export.outputs.REPORT_PATHS }}
- token: ${{ secrets.GITHUB_TOKEN }}
- min-coverage-overall: 0
- min-coverage-changed-files: 40
- title: Code Coverage