mirror of
https://github.com/android-password-store/Android-Password-Store
synced 2025-08-29 13:27:46 +00:00
Cleanup and improve CI checks (#1511)
This commit is contained in:
parent
2cef6a5bb4
commit
99586970a1
20
.github/check-changed-files.js
vendored
Normal file
20
.github/check-changed-files.js
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
module.exports = async ({github, context}) => {
|
||||||
|
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 files = result.data.filter((file) => {
|
||||||
|
const filename = file.filename
|
||||||
|
// Markdown files are not tested
|
||||||
|
return !filename.endsWith("md") &&
|
||||||
|
// Exclude YAML files as long as they are not the PR workflow itself
|
||||||
|
!(filename.endsWith("yml") && !filename.endsWith("pull_request.yml")) && !filename.endsWith("yaml") &&
|
||||||
|
// Fastlane metadata does not need tests
|
||||||
|
!filename.startsWith("fastlane/");
|
||||||
|
});
|
||||||
|
console.log(`Remaining changed files: ${files.map(file => file.filename)}`)
|
||||||
|
return files.length != 0;
|
||||||
|
}
|
70
.github/workflows/pull_request.yml
vendored
70
.github/workflows/pull_request.yml
vendored
@ -10,45 +10,35 @@ jobs:
|
|||||||
unit-tests:
|
unit-tests:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Check if relevant files have changed
|
- name: Check if relevant files have changed
|
||||||
uses: actions/github-script@a3e7071a34d7e1f219a8a4de9a5e0a34d1ee1293
|
uses: actions/github-script@a3e7071a34d7e1f219a8a4de9a5e0a34d1ee1293
|
||||||
id: service-changed
|
id: service-changed
|
||||||
with:
|
with:
|
||||||
result-encoding: string
|
result-encoding: string
|
||||||
script: |
|
script: |
|
||||||
const result = await github.pulls.listFiles({
|
const script = require('.github/check-changed-files.js')
|
||||||
owner: context.payload.repository.owner.login,
|
return await script({github, context})
|
||||||
repo: context.payload.repository.name,
|
|
||||||
pull_number: context.payload.number,
|
|
||||||
per_page: 100
|
|
||||||
})
|
|
||||||
const files = result.data.filter(file =>
|
|
||||||
// We wanna run this if the PR workflow is modified
|
|
||||||
(file.filename.endsWith(".yml") && !file.filename.endsWith("pull_request.yml")) ||
|
|
||||||
// Changes in Markdown files don't need tests
|
|
||||||
file.filename.endsWith(".md") ||
|
|
||||||
// Changes to fastlane metadata aren't covered by tests
|
|
||||||
file.filename.startsWith("fastlane/")
|
|
||||||
)
|
|
||||||
// If filtered file count and source file count is equal, it means all files
|
|
||||||
// in this PR are skip-worthy.
|
|
||||||
return files.length != result.data.length
|
|
||||||
|
|
||||||
- uses: actions/setup-java@d202f5dbf7256730fb690ec59f6381650114feb2
|
- uses: actions/setup-java@d202f5dbf7256730fb690ec59f6381650114feb2
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
with:
|
with:
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
|
|
||||||
- name: Checkout repository
|
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
||||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Copy CI gradle.properties
|
- name: Copy CI gradle.properties
|
||||||
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: Build debug APKs
|
||||||
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
|
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
||||||
|
with:
|
||||||
|
arguments: assembleFreeDebug assembleNonFreeDebug
|
||||||
|
|
||||||
- name: Run unit tests
|
- name: Run unit tests
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
uses: burrunan/gradle-cache-action@03c71a8ba93d670980695505f48f49daf43704a6
|
||||||
@ -62,32 +52,22 @@ jobs:
|
|||||||
name: Test report
|
name: Test report
|
||||||
path: app/build/reports
|
path: app/build/reports
|
||||||
|
|
||||||
run-screenshot-tests:
|
instrumentation-tests:
|
||||||
runs-on: macOS-latest
|
runs-on: macos-11
|
||||||
steps:
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Check if relevant files have changed
|
- name: Check if relevant files have changed
|
||||||
uses: actions/github-script@a3e7071a34d7e1f219a8a4de9a5e0a34d1ee1293
|
uses: actions/github-script@a3e7071a34d7e1f219a8a4de9a5e0a34d1ee1293
|
||||||
id: service-changed
|
id: service-changed
|
||||||
with:
|
with:
|
||||||
result-encoding: string
|
result-encoding: string
|
||||||
script: |
|
script: |
|
||||||
const result = await github.pulls.listFiles({
|
const script = require('.github/check-changed-files.js')
|
||||||
owner: context.payload.repository.owner.login,
|
return await script({github, context})
|
||||||
repo: context.payload.repository.name,
|
|
||||||
pull_number: context.payload.number,
|
|
||||||
per_page: 100
|
|
||||||
})
|
|
||||||
const files = result.data.filter(file =>
|
|
||||||
// We wanna run this if the PR workflow is modified
|
|
||||||
(file.filename.endsWith(".yml") && !file.filename.endsWith("pull_request.yml")) ||
|
|
||||||
// Changes in Markdown files don't need tests
|
|
||||||
file.filename.endsWith(".md") ||
|
|
||||||
// Changes to fastlane metadata aren't covered by tests
|
|
||||||
file.filename.startsWith("fastlane/")
|
|
||||||
)
|
|
||||||
// If filtered file count and source file count is equal, it means all files
|
|
||||||
// in this PR are skip-worthy.
|
|
||||||
return files.length != result.data.length
|
|
||||||
|
|
||||||
- uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353
|
- uses: actions/cache@c64c572235d810460d0d6876e9c705ad5002b353
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
||||||
@ -103,12 +83,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
|
|
||||||
- name: Checkout repository
|
|
||||||
if: ${{ steps.service-changed.outputs.result == 'true' }}
|
|
||||||
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
|
|
||||||
- name: Copy CI gradle.properties
|
- name: Copy CI gradle.properties
|
||||||
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
|
||||||
|
@ -37,7 +37,9 @@ import kotlin.coroutines.suspendCoroutine
|
|||||||
import kotlinx.coroutines.Dispatchers
|
import kotlinx.coroutines.Dispatchers
|
||||||
import kotlinx.coroutines.launch
|
import kotlinx.coroutines.launch
|
||||||
import kotlinx.coroutines.withContext
|
import kotlinx.coroutines.withContext
|
||||||
|
import logcat.LogPriority.ERROR
|
||||||
import logcat.LogPriority.WARN
|
import logcat.LogPriority.WARN
|
||||||
|
import logcat.asLog
|
||||||
import logcat.logcat
|
import logcat.logcat
|
||||||
|
|
||||||
suspend fun <T> Task<T>.suspendableAwait() =
|
suspend fun <T> Task<T>.suspendableAwait() =
|
||||||
@ -134,7 +136,7 @@ class AutofillSmsActivity : AppCompatActivity() {
|
|||||||
if (e is ResolvableApiException) {
|
if (e is ResolvableApiException) {
|
||||||
e.startResolutionForResult(this@AutofillSmsActivity, 1)
|
e.startResolutionForResult(this@AutofillSmsActivity, 1)
|
||||||
} else {
|
} else {
|
||||||
e(e)
|
logcat(ERROR) { e.asLog() }
|
||||||
withContext(Dispatchers.Main) { finish() }
|
withContext(Dispatchers.Main) { finish() }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user