2022-10-29 02:56:46 +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
|
|
|
|
|
2022-02-22 09:03:03 +00:00
|
|
|
env:
|
|
|
|
SENTRY_DSN: 'https://public_key@example.com/project_id'
|
|
|
|
|
2019-10-02 05:14:16 +00:00
|
|
|
jobs:
|
2022-10-29 02:56:46 +00:00
|
|
|
check-changed-files:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-01-05 13:41:31 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Check if relevant files have changed
|
2023-01-26 17:47:10 +00:00
|
|
|
uses: actions/github-script@98814c53be79b1d30f795b907e553d8679345975 # v6.4.0
|
2022-10-29 02:56:46 +00:00
|
|
|
id: service-changed
|
|
|
|
with:
|
|
|
|
result-encoding: string
|
|
|
|
script: |
|
|
|
|
const script = require('.github/check-changed-files.js')
|
|
|
|
return await script({github, context})
|
|
|
|
|
|
|
|
- name: Fail if no files changed
|
|
|
|
if: "${{ steps.service-changed.outputs.result != 'true' }}"
|
|
|
|
shell: bash
|
|
|
|
run: exit 1
|
|
|
|
|
2021-12-07 10:06:41 +00:00
|
|
|
check-codestyle:
|
2022-10-29 02:56:46 +00:00
|
|
|
needs: [ "check-changed-files" ]
|
2021-05-22 13:17:09 +00:00
|
|
|
runs-on: ubuntu-latest
|
2019-10-02 05:14:16 +00:00
|
|
|
steps:
|
2022-10-29 02:56:46 +00:00
|
|
|
- name: Checkout repository
|
2023-01-05 13:41:31 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2022-12-14 15:20:38 +00:00
|
|
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3.9.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
|
|
|
java-version: 18
|
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Check codestyle
|
2022-11-12 19:54:33 +00:00
|
|
|
uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
arguments: ktfmtCheck
|
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2023-01-06 15:39:49 +00:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
name: Build report
|
|
|
|
path: build/reports/kotlin-build/
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
unit-tests:
|
2022-10-29 02:56:46 +00:00
|
|
|
needs: [ "check-changed-files" ]
|
2021-12-07 10:06:41 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-29 02:56:46 +00:00
|
|
|
- name: Checkout repository
|
2023-01-05 13:41:31 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2022-12-14 15:20:38 +00:00
|
|
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3.9.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
|
|
|
java-version: 18
|
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Run unit tests
|
2022-11-12 19:54:33 +00:00
|
|
|
uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
arguments: test -PslimTests
|
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
|
|
|
|
- name: (Fail-only) Upload test report
|
|
|
|
if: "${{ failure() }}"
|
2023-01-06 15:39:49 +00:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
2020-07-26 11:18:03 +00:00
|
|
|
name: Test report
|
|
|
|
path: app/build/reports
|
2021-12-07 10:06:41 +00:00
|
|
|
|
2022-10-29 02:56:46 +00:00
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2023-01-06 15:39:49 +00:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
name: Build report
|
|
|
|
path: build/reports/kotlin-build/
|
2022-06-10 17:57:56 +00:00
|
|
|
|
2021-12-07 10:06:41 +00:00
|
|
|
build-apks:
|
2022-10-29 02:56:46 +00:00
|
|
|
needs: [ "check-changed-files" ]
|
2021-12-07 10:06:41 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-29 02:56:46 +00:00
|
|
|
- name: Checkout repository
|
2023-01-05 13:41:31 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2022-12-14 15:20:38 +00:00
|
|
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3.9.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
|
|
|
java-version: 18
|
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Build debug APKs
|
2022-11-12 19:54:33 +00:00
|
|
|
uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
2022-11-08 16:01:21 +00:00
|
|
|
arguments: assembleFreeDebug assembleNonFreeDebug assembleNonFreeRelease
|
2022-10-29 02:56:46 +00:00
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2023-01-06 15:39:49 +00:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
name: Build report
|
|
|
|
path: build/reports/kotlin-build/
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
check-api:
|
2022-10-29 02:56:46 +00:00
|
|
|
needs: [ "check-changed-files" ]
|
2021-12-07 10:06:41 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-29 02:56:46 +00:00
|
|
|
- name: Checkout repository
|
2023-01-05 13:41:31 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2022-12-14 15:20:38 +00:00
|
|
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3.9.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
|
|
|
java-version: 18
|
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Check library API
|
2022-11-12 19:54:33 +00:00
|
|
|
uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
arguments: metalavaCheckCompatibilityRelease
|
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2023-01-06 15:39:49 +00:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
name: Build report
|
|
|
|
path: build/reports/kotlin-build/
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
lint-debug:
|
2022-10-29 02:56:46 +00:00
|
|
|
needs: [ "check-changed-files" ]
|
2021-12-07 10:06:41 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-10-29 02:56:46 +00:00
|
|
|
- name: Checkout repository
|
2023-01-05 13:41:31 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2022-12-14 15:20:38 +00:00
|
|
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3.9.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
|
|
|
java-version: 18
|
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Run Lint on debug variants
|
2022-11-12 19:54:33 +00:00
|
|
|
uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
arguments: lintDebug
|
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2023-01-06 15:39:49 +00:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
name: Build report
|
|
|
|
path: build/reports/kotlin-build/
|
2022-07-17 08:37:50 +00:00
|
|
|
|
|
|
|
detekt:
|
2022-10-29 02:56:46 +00:00
|
|
|
needs: [ "check-changed-files" ]
|
2022-07-17 08:37:50 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2023-01-05 13:41:31 +00:00
|
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2022-12-14 15:20:38 +00:00
|
|
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3.9.0
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
2022-09-05 08:21:05 +00:00
|
|
|
java-version: 18
|
2022-07-17 08:37:50 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
2022-07-17 17:22:39 +00:00
|
|
|
- name: Run detekt
|
2022-11-12 19:54:33 +00:00
|
|
|
uses: gradle/gradle-build-action@3fbe033aaae657f011f88f29be9e65ed26bd29ef # v2.3.3
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
|
|
|
arguments: detekt
|
2022-08-30 16:38:46 +00:00
|
|
|
gradle-home-cache-cleanup: true
|
2022-07-17 08:37:50 +00:00
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2023-01-06 15:39:49 +00:00
|
|
|
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
|
|
|
name: Build report
|
|
|
|
path: build/reports/kotlin-build/
|