mirror of
https://github.com/bitwarden/android.git
synced 2026-03-12 05:04:17 -05:00
Improve CI performance by excluding unnecessary FDroid tasks (#533)
This commit is contained in:
committed by
Álison Fernandes
parent
70a425dfd8
commit
ab5ea4ebaa
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:
|
||||
|
||||
Reference in New Issue
Block a user