2023-02-13 10:39:58 +00:00
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
merge_group:
|
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-10-18 05:53:34 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Check if relevant files have changed
|
2023-11-18 16:33:31 +00:00
|
|
|
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
|
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-10-18 05:53:34 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2023-09-20 16:48:51 +00:00
|
|
|
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
2023-08-26 15:26:48 +00:00
|
|
|
java-version: 20
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Check codestyle
|
2023-11-27 10:34:58 +00:00
|
|
|
uses: gradle/gradle-build-action@87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6 # v2.10.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
arguments: ktfmtCheck
|
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2023-09-07 04:34:22 +00:00
|
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
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-10-18 05:53:34 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2023-09-20 16:48:51 +00:00
|
|
|
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
2023-08-26 15:26:48 +00:00
|
|
|
java-version: 20
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Run unit tests
|
2023-11-27 10:34:58 +00:00
|
|
|
uses: gradle/gradle-build-action@87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6 # v2.10.0
|
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-09-07 04:34:22 +00:00
|
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
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-09-07 04:34:22 +00:00
|
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
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-10-18 05:53:34 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2023-09-20 16:48:51 +00:00
|
|
|
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
2023-08-26 15:26:48 +00:00
|
|
|
java-version: 20
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Build debug APKs
|
2023-11-27 10:34:58 +00:00
|
|
|
uses: gradle/gradle-build-action@87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6 # v2.10.0
|
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-09-07 04:34:22 +00:00
|
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
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-10-18 05:53:34 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2023-09-20 16:48:51 +00:00
|
|
|
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
2023-08-26 15:26:48 +00:00
|
|
|
java-version: 20
|
2022-10-29 02:56:46 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Check library API
|
2023-11-27 10:34:58 +00:00
|
|
|
uses: gradle/gradle-build-action@87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6 # v2.10.0
|
2022-10-29 02:56:46 +00:00
|
|
|
with:
|
|
|
|
arguments: metalavaCheckCompatibilityRelease
|
|
|
|
gradle-home-cache-cleanup: true
|
|
|
|
|
|
|
|
- name: Upload Kotlin build report
|
|
|
|
if: "${{ always() }}"
|
2023-09-07 04:34:22 +00:00
|
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
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
|
|
|
|
2023-04-27 09:12:11 +00:00
|
|
|
lint:
|
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-10-18 05:53:34 +00:00
|
|
|
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Set up JDK
|
2023-09-20 16:48:51 +00:00
|
|
|
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3.13.0
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
|
|
|
distribution: temurin
|
2023-08-26 15:26:48 +00:00
|
|
|
java-version: 20
|
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
|
|
|
|
|
2023-04-27 09:12:11 +00:00
|
|
|
- name: Run Lint
|
2023-11-27 10:34:58 +00:00
|
|
|
uses: gradle/gradle-build-action@87a9a15658c426a54dd469d4fc7dc1a73ca9d4a6 # v2.10.0
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
2023-04-27 09:12:11 +00:00
|
|
|
arguments: lint
|
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-09-07 04:34:22 +00:00
|
|
|
uses: actions/upload-artifact@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
|
2022-07-17 08:37:50 +00:00
|
|
|
with:
|
|
|
|
name: Build report
|
|
|
|
path: build/reports/kotlin-build/
|