380070d5ff
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
312 lines
9.1 KiB
YAML
312 lines
9.1 KiB
YAML
on: [pull_request]
|
|
|
|
name: Check pull request
|
|
|
|
concurrency:
|
|
group: ${{ github.head_ref }}
|
|
cancel-in-progress: true
|
|
|
|
env:
|
|
SENTRY_DSN: 'https://public_key@example.com/project_id'
|
|
|
|
jobs:
|
|
check-codestyle:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3.1.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Check if relevant files have changed
|
|
uses: actions/github-script@v6.3.1
|
|
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@v3.5.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- 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 codestyle
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
|
uses: gradle/gradle-build-action@v2.3.2
|
|
with:
|
|
arguments: spotlessCheck
|
|
gradle-home-cache-cleanup: true
|
|
|
|
- name: Upload Kotlin build report
|
|
if: "${{ always() }}"
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: Build report
|
|
path: build/reports/kotlin-build/
|
|
|
|
unit-tests:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3.1.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Check if relevant files have changed
|
|
uses: actions/github-script@v6.3.1
|
|
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@v3.5.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- 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 unit tests
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
|
uses: gradle/gradle-build-action@v2.3.2
|
|
with:
|
|
arguments: test -PslimTests
|
|
gradle-home-cache-cleanup: true
|
|
|
|
- name: (Fail-only) Upload test report
|
|
if: "${{ failure() }}"
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: Test report
|
|
path: app/build/reports
|
|
|
|
- name: Upload Kotlin build report
|
|
if: "${{ always() }}"
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: Build report
|
|
path: build/reports/kotlin-build/
|
|
|
|
build-apks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3.1.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Check if relevant files have changed
|
|
uses: actions/github-script@v6.3.1
|
|
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@v3.5.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- 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.3.2
|
|
with:
|
|
arguments: assembleFreeDebug assembleNonFreeDebug
|
|
gradle-home-cache-cleanup: true
|
|
|
|
- name: Upload Kotlin build report
|
|
if: "${{ always() }}"
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: Build report
|
|
path: build/reports/kotlin-build/
|
|
|
|
check-api:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3.1.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Check if relevant files have changed
|
|
uses: actions/github-script@v6.3.1
|
|
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@v3.5.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- 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.3.2
|
|
with:
|
|
arguments: apiCheck
|
|
gradle-home-cache-cleanup: true
|
|
|
|
- name: Upload Kotlin build report
|
|
if: "${{ always() }}"
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: Build report
|
|
path: build/reports/kotlin-build/
|
|
|
|
lint-debug:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3.1.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Check if relevant files have changed
|
|
uses: actions/github-script@v6.3.1
|
|
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@v3.5.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- 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.3.2
|
|
with:
|
|
arguments: lintDebug
|
|
gradle-home-cache-cleanup: true
|
|
|
|
- name: Upload Kotlin build report
|
|
if: "${{ always() }}"
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: Build report
|
|
path: build/reports/kotlin-build/
|
|
|
|
assemble-release-apks:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3.1.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Check if relevant files have changed
|
|
uses: actions/github-script@v6.3.1
|
|
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@v3.5.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- 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' }}"
|
|
uses: gradle/gradle-build-action@v2.3.2
|
|
with:
|
|
arguments: aNFR
|
|
gradle-home-cache-cleanup: true
|
|
|
|
- name: Upload Kotlin build report
|
|
if: "${{ always() }}"
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: Build report
|
|
path: build/reports/kotlin-build/
|
|
|
|
detekt:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3.1.0
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Check if relevant files have changed
|
|
uses: actions/github-script@v6.3.1
|
|
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@v3.5.1
|
|
with:
|
|
distribution: temurin
|
|
java-version: 18
|
|
|
|
- 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 detekt
|
|
if: "${{ steps.service-changed.outputs.result == 'true' }}"
|
|
uses: gradle/gradle-build-action@v2.3.2
|
|
with:
|
|
arguments: detekt
|
|
gradle-home-cache-cleanup: true
|
|
|
|
- name: Upload Kotlin build report
|
|
if: "${{ always() }}"
|
|
uses: actions/upload-artifact@v3.1.0
|
|
with:
|
|
name: Build report
|
|
path: build/reports/kotlin-build/
|