mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-29 13:27:46 +00:00
github: split PR tasks into separate jobs
This commit is contained in:
parent
09a10678de
commit
57d0dbad36
148
.github/workflows/pull_request.yml
vendored
148
.github/workflows/pull_request.yml
vendored
@ -7,6 +7,41 @@ concurrency:
|
|||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
check-codestyle:
|
||||||
|
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'
|
||||||
|
java-version : '11'
|
||||||
|
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 codestyle
|
||||||
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
|
uses: gradle/gradle-build-action@v2.0.1
|
||||||
|
with:
|
||||||
|
arguments: spotlessCheck
|
||||||
|
|
||||||
unit-tests:
|
unit-tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
@ -36,21 +71,120 @@ jobs:
|
|||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
|
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.0.1
|
||||||
|
with:
|
||||||
|
arguments: test -PslimTests
|
||||||
|
|
||||||
|
- name: (Fail-only) Upload test report
|
||||||
|
if: failure()
|
||||||
|
uses: actions/upload-artifact@v2.2.4
|
||||||
|
with:
|
||||||
|
name: Test report
|
||||||
|
path: app/build/reports
|
||||||
|
|
||||||
|
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'
|
||||||
|
java-version : '11'
|
||||||
|
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
|
- name: Build debug APKs
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.0.1
|
||||||
with:
|
with:
|
||||||
arguments: assembleFreeDebug assembleNonFreeDebug
|
arguments: assembleFreeDebug assembleNonFreeDebug
|
||||||
|
|
||||||
- name: Run unit tests
|
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'
|
||||||
|
java-version : '11'
|
||||||
|
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' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: gradle/gradle-build-action@v2.0.1
|
uses: gradle/gradle-build-action@v2.0.1
|
||||||
with:
|
with:
|
||||||
arguments: apiCheck test lintFreeDebug spotlessCheck -PslimTests
|
arguments: apiCheck
|
||||||
|
|
||||||
- name: (Fail-only) upload test report
|
lint-debug:
|
||||||
if: failure()
|
runs-on: ubuntu-latest
|
||||||
uses: actions/upload-artifact@v2.2.4
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2.4.0
|
||||||
with:
|
with:
|
||||||
name: Test report
|
fetch-depth: 0
|
||||||
path: app/build/reports
|
|
||||||
|
- 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'
|
||||||
|
java-version : '11'
|
||||||
|
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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user