Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 25 additions & 3 deletions .github/workflows/deploy_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,32 @@ jobs:
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties

- uses: actions/cache@v1
- name: Generate cache key
run: ./.github/checksum.sh checksum.txt

- name: Cache gradle modules
uses: actions/cache@v1
with:
path: ~/.gradle/caches/modules-2
key: ${{ runner.os }}-gradlemodules-${{ hashFiles('checksum.txt') }}
restore-keys: |
${{ runner.os }}-gradlemodules-

- name: Cache gradle jars
uses: actions/cache@v1
with:
path: ~/.gradle/caches/jars-3
key: ${{ runner.os }}-gradlejars-${{ hashFiles('checksum.txt') }}
restore-keys: |
${{ runner.os }}-gradlejars-

- name: Cache gradle build
uses: actions/cache@v1
with:
path: ~/.gradle/caches
key: gradle-${{ runner.os }}-${{ hashFiles('**/build.gradle') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/dependencies.gradle') }}
path: ~/.gradle/caches/build-cache-1
key: ${{ runner.os }}-gradlebuildcache-${{ hashFiles('checksum.txt') }}
restore-keys: |
${{ runner.os }}-gradlebuildcache-

- name: Download gradle dependencies
run: ./gradlew dependencies
Expand Down
38 changes: 27 additions & 11 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,4 @@
on:
pull_request:
paths:
- '.github/**'
- 'app/**'
- 'gradle/**'
- '*.properties'
- '*.gradle'
- 'gradlew'
- 'gradlew.bat'
on: [pull_request]

name: Check pull request
jobs:
Expand All @@ -19,15 +10,36 @@ jobs:
variant: [Debug, Release]
steps:

- uses: actions/checkout@master
- name: Check if relevant files have changed
uses: actions/github-script@0.9.0
id: service-changed
with:
result-encoding: string
script: |
const result = await github.pulls.listFiles({
owner: context.payload.repository.owner.login,
repo: context.payload.repository.name,
pull_number: context.payload.number,
per_page: 100
})
const serviceChanged = result.data.filter(f => f.filename.startsWith("app/") || f.filename.endsWith("gradle") || f.filename.startsWith(".github") || f.filename.startsWith("gradle") || f.filename.endsWith("properties")).length > 0
console.log(serviceChanged)
return serviceChanged
- name: Checkout repository
if: ${{ steps.service-changed.outputs.result == 'true' }}
uses: actions/checkout@v1

- 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: Generate cache key
if: ${{ steps.service-changed.outputs.result == 'true' }}
run: ./.github/checksum.sh checksum.txt

- name: Cache gradle modules
if: ${{ steps.service-changed.outputs.result == 'true' }}
uses: actions/cache@v1
with:
path: ~/.gradle/caches/modules-2
Expand All @@ -36,6 +48,7 @@ jobs:
${{ runner.os }}-gradlemodules-
- name: Cache gradle jars
if: ${{ steps.service-changed.outputs.result == 'true' }}
uses: actions/cache@v1
with:
path: ~/.gradle/caches/jars-3
Expand All @@ -44,6 +57,7 @@ jobs:
${{ runner.os }}-gradlejars-
- name: Cache gradle build
if: ${{ steps.service-changed.outputs.result == 'true' }}
uses: actions/cache@v1
with:
path: ~/.gradle/caches/build-cache-1
Expand All @@ -52,9 +66,11 @@ jobs:
${{ runner.os }}-gradlebuildcache-
- name: Run unit tests
if: ${{ steps.service-changed.outputs.result == 'true' }}
run: ./gradlew test${{ matrix.variant }} lint${{ matrix.variant}} -Dpre-dex=false

- name: Run instrumentation tests
if: ${{ steps.service-changed.outputs.result == 'true' }}
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: ${{ matrix.api-level }}
Expand Down