2020-12-22 08:32:56 +00:00
|
|
|
on: [pull_request]
|
2019-12-15 21:49:18 +00:00
|
|
|
|
|
|
|
name: Check pull request
|
2021-09-29 12:00:32 +00:00
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.head_ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2019-10-02 05:14:16 +00:00
|
|
|
jobs:
|
2021-12-07 10:06:41 +00:00
|
|
|
check-codestyle:
|
2021-05-22 13:17:09 +00:00
|
|
|
runs-on: ubuntu-latest
|
2019-10-02 05:14:16 +00:00
|
|
|
steps:
|
2021-10-03 12:39:24 +00:00
|
|
|
- name: Checkout repository
|
2021-12-06 18:19:29 +00:00
|
|
|
uses: actions/checkout@v2.4.0
|
2021-10-03 12:39:24 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
2020-05-23 11:04:10 +00:00
|
|
|
- name: Check if relevant files have changed
|
2021-12-06 18:19:29 +00:00
|
|
|
uses: actions/github-script@v4.0.0
|
2020-05-23 11:04:10 +00:00
|
|
|
id: service-changed
|
|
|
|
with:
|
|
|
|
result-encoding: string
|
|
|
|
script: |
|
2021-10-03 12:39:24 +00:00
|
|
|
const script = require('.github/check-changed-files.js')
|
|
|
|
return await script({github, context})
|
2020-05-23 11:04:10 +00:00
|
|
|
|
2021-12-06 18:19:29 +00:00
|
|
|
- name: Set up JDK
|
2021-03-18 07:03:44 +00:00
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
2021-12-06 18:19:29 +00:00
|
|
|
uses : actions/setup-java@v2.4.0
|
|
|
|
with :
|
|
|
|
distribution : 'zulu'
|
2021-12-07 15:21:54 +00:00
|
|
|
java-version : '17'
|
2021-12-06 18:19:29 +00:00
|
|
|
cache: 'gradle'
|
2021-03-18 07:03:44 +00:00
|
|
|
|
2020-09-21 08:47:06 +00:00
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
2021-12-07 10:06:41 +00:00
|
|
|
- name: Check codestyle
|
2021-10-03 12:39:24 +00:00
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
2021-12-06 18:19:29 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.0.1
|
2021-10-03 12:39:24 +00:00
|
|
|
with:
|
2021-12-07 10:06:41 +00:00
|
|
|
arguments: spotlessCheck
|
|
|
|
|
|
|
|
unit-tests:
|
|
|
|
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@v4.0.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'
|
2021-12-07 15:21:54 +00:00
|
|
|
java-version : '17'
|
2021-12-07 10:06:41 +00:00
|
|
|
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
|
2021-10-03 12:39:24 +00:00
|
|
|
|
2020-04-16 18:54:13 +00:00
|
|
|
- name: Run unit tests
|
2020-05-23 11:04:10 +00:00
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
2021-12-06 18:19:29 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.0.1
|
2020-10-01 08:44:36 +00:00
|
|
|
with:
|
2021-12-07 10:06:41 +00:00
|
|
|
arguments: test -PslimTests
|
2019-12-31 15:27:38 +00:00
|
|
|
|
2021-12-07 10:06:41 +00:00
|
|
|
- name: (Fail-only) Upload test report
|
2020-07-26 11:18:03 +00:00
|
|
|
if: failure()
|
2021-12-23 12:52:19 +00:00
|
|
|
uses: actions/upload-artifact@v2.3.1
|
2020-07-26 11:18:03 +00:00
|
|
|
with:
|
|
|
|
name: Test report
|
|
|
|
path: app/build/reports
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
build-apks:
|
|
|
|
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@v4.0.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'
|
2021-12-07 15:21:54 +00:00
|
|
|
java-version : '17'
|
2021-12-07 10:06:41 +00:00
|
|
|
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: Build debug APKs
|
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
|
|
uses: gradle/gradle-build-action@v2.0.1
|
|
|
|
with:
|
|
|
|
arguments: assembleFreeDebug assembleNonFreeDebug
|
|
|
|
|
|
|
|
check-api:
|
|
|
|
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@v4.0.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'
|
2021-12-07 15:21:54 +00:00
|
|
|
java-version : '17'
|
2021-12-07 10:06:41 +00:00
|
|
|
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: Check library API
|
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
|
|
uses: gradle/gradle-build-action@v2.0.1
|
|
|
|
with:
|
|
|
|
arguments: apiCheck
|
|
|
|
|
|
|
|
lint-debug:
|
|
|
|
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@v4.0.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'
|
2021-12-07 15:21:54 +00:00
|
|
|
java-version : '17'
|
2021-12-07 10:06:41 +00:00
|
|
|
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: Run Lint on debug variants
|
|
|
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
|
|
uses: gradle/gradle-build-action@v2.0.1
|
|
|
|
with:
|
|
|
|
arguments: lintDebug
|
2021-12-07 13:20:23 +00:00
|
|
|
|
|
|
|
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@v4.0.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'
|
2021-12-07 15:21:54 +00:00
|
|
|
java-version : '17'
|
2021-12-07 13:20:23 +00:00
|
|
|
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.0.1
|
|
|
|
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
|
2021-12-07 13:22:45 +00:00
|
|
|
if: false
|
2021-12-07 13:20:23 +00:00
|
|
|
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
|