mirror of
https://github.com/bitwarden/android.git
synced 2025-03-16 03:08:50 +03:00
Improve CI performance by excluding unnecessary FDroid tasks (#533)
This commit is contained in:
parent
70a425dfd8
commit
ab5ea4ebaa
1 changed files with 12 additions and 2 deletions
14
.github/workflows/run-check.yml
vendored
14
.github/workflows/run-check.yml
vendored
|
@ -36,8 +36,18 @@ jobs:
|
|||
|
||||
- name: Build and Run Check
|
||||
# Run checks while excluding release-build tests, which are not configured to work properly
|
||||
# with the Compose testing library.
|
||||
run: ./gradlew check -x testStandardRelease -x testFdroidDebug -x testFdroidRelease koverXmlReportStandardDebug
|
||||
# with the Compose testing library. Also exclude most FDroid-related tasks, as there is no
|
||||
# significant code difference between builds.
|
||||
run: |
|
||||
./gradlew check \
|
||||
-x testStandardRelease \
|
||||
-x testFdroidDebug \
|
||||
-x testFdroidRelease \
|
||||
-x lintFdroidDebug \
|
||||
-x lintFdroidRelease \
|
||||
-x detektFdroidDebug \
|
||||
-x detektFdroidRelease \
|
||||
koverXmlReportStandardDebug
|
||||
|
||||
- name: Danger
|
||||
env:
|
||||
|
|
Loading…
Add table
Reference in a new issue