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
|
|
|
|
|
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:
|
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
|
2022-04-21 15:21:12 +00:00
|
|
|
uses: actions/checkout@v3.0.2
|
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
|
2022-05-13 03:32:28 +00:00
|
|
|
uses: actions/github-script@v6.1.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
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-05-04 14:25:07 +00:00
|
|
|
uses: actions/setup-java@v3.3.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-02-17 04:43:04 +00:00
|
|
|
java-version: 17
|
2021-03-18 07:03:44 +00:00
|
|
|
|
2020-09-21 08:47:06 +00:00
|
|
|
- name: Copy CI gradle.properties
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2020-09-21 08:47:06 +00:00
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
2021-12-07 10:06:41 +00:00
|
|
|
- name: Check codestyle
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-06-07 02:40:22 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.2.0
|
2021-10-03 12:39:24 +00:00
|
|
|
with:
|
2022-06-09 05:19:53 +00:00
|
|
|
arguments: --no-configuration-cache spotlessCheck
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
unit-tests:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-04-21 15:21:12 +00:00
|
|
|
uses: actions/checkout@v3.0.2
|
2021-12-07 10:06:41 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Check if relevant files have changed
|
2022-05-13 03:32:28 +00:00
|
|
|
uses: actions/github-script@v6.1.0
|
2021-12-07 10:06:41 +00:00
|
|
|
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
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-05-04 14:25:07 +00:00
|
|
|
uses: actions/setup-java@v3.3.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-02-17 04:43:04 +00:00
|
|
|
java-version: 17
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2021-12-07 10:06:41 +00:00
|
|
|
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
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-06-07 02:40:22 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.2.0
|
2020-10-01 08:44:36 +00:00
|
|
|
with:
|
2022-06-09 05:19:53 +00:00
|
|
|
arguments: --no-configuration-cache test -PslimTests
|
2019-12-31 15:27:38 +00:00
|
|
|
|
2021-12-07 10:06:41 +00:00
|
|
|
- name: (Fail-only) Upload test report
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ failure() }}"
|
2022-05-20 16:20:47 +00:00
|
|
|
uses: actions/upload-artifact@v3.1.0
|
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
|
2022-04-21 15:21:12 +00:00
|
|
|
uses: actions/checkout@v3.0.2
|
2021-12-07 10:06:41 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Check if relevant files have changed
|
2022-05-13 03:32:28 +00:00
|
|
|
uses: actions/github-script@v6.1.0
|
2021-12-07 10:06:41 +00:00
|
|
|
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
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-05-04 14:25:07 +00:00
|
|
|
uses: actions/setup-java@v3.3.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-02-17 04:43:04 +00:00
|
|
|
java-version: 17
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2021-12-07 10:06:41 +00:00
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Build debug APKs
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-06-07 02:40:22 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.2.0
|
2021-12-07 10:06:41 +00:00
|
|
|
with:
|
2022-06-09 05:19:53 +00:00
|
|
|
arguments: --no-configuration-cache assembleFreeDebug assembleNonFreeDebug
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
check-api:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-04-21 15:21:12 +00:00
|
|
|
uses: actions/checkout@v3.0.2
|
2021-12-07 10:06:41 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Check if relevant files have changed
|
2022-05-13 03:32:28 +00:00
|
|
|
uses: actions/github-script@v6.1.0
|
2021-12-07 10:06:41 +00:00
|
|
|
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
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-05-04 14:25:07 +00:00
|
|
|
uses: actions/setup-java@v3.3.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-02-17 04:43:04 +00:00
|
|
|
java-version: 17
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2021-12-07 10:06:41 +00:00
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Check library API
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-06-07 02:40:22 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.2.0
|
2021-12-07 10:06:41 +00:00
|
|
|
with:
|
2022-06-09 05:19:53 +00:00
|
|
|
arguments: --no-configuration-cache apiCheck
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
lint-debug:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-04-21 15:21:12 +00:00
|
|
|
uses: actions/checkout@v3.0.2
|
2021-12-07 10:06:41 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Check if relevant files have changed
|
2022-05-13 03:32:28 +00:00
|
|
|
uses: actions/github-script@v6.1.0
|
2021-12-07 10:06:41 +00:00
|
|
|
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
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-05-04 14:25:07 +00:00
|
|
|
uses: actions/setup-java@v3.3.0
|
2022-02-17 04:43:04 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-02-17 04:43:04 +00:00
|
|
|
java-version: 17
|
2021-12-07 10:06:41 +00:00
|
|
|
|
|
|
|
- name: Copy CI gradle.properties
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2021-12-07 10:06:41 +00:00
|
|
|
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
|
|
|
|
|
|
|
- name: Run Lint on debug variants
|
2022-02-20 00:18:48 +00:00
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-06-07 02:40:22 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.2.0
|
2021-12-07 10:06:41 +00:00
|
|
|
with:
|
2022-06-09 05:19:53 +00:00
|
|
|
arguments: --no-configuration-cache lintDebug
|
2022-02-21 15:12:56 +00:00
|
|
|
|
|
|
|
assemble-release-apks:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2022-04-21 15:21:12 +00:00
|
|
|
uses: actions/checkout@v3.0.2
|
2022-02-21 15:12:56 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
|
|
|
|
- name: Check if relevant files have changed
|
2022-05-13 03:32:28 +00:00
|
|
|
uses: actions/github-script@v6.1.0
|
2022-02-21 15:12:56 +00:00
|
|
|
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' }}"
|
2022-05-04 14:25:07 +00:00
|
|
|
uses: actions/setup-java@v3.3.0
|
2022-02-21 15:12:56 +00:00
|
|
|
with:
|
2022-05-25 12:29:04 +00:00
|
|
|
distribution: temurin
|
2022-02-21 15:12:56 +00:00
|
|
|
java-version: 17
|
|
|
|
|
|
|
|
- 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: Assemble non-free release
|
|
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
2022-06-07 02:40:22 +00:00
|
|
|
uses: gradle/gradle-build-action@v2.2.0
|
2022-02-21 15:12:56 +00:00
|
|
|
with:
|
2022-06-09 05:19:53 +00:00
|
|
|
arguments: --no-configuration-cache aNFR
|