Skip to content

Commit

Permalink
Disable Analyse as it's not working yet
Browse files Browse the repository at this point in the history
  • Loading branch information
wmontwe committed Feb 19, 2023
1 parent 523c569 commit 19e16c1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci-pull-request-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,9 @@ jobs:

- name: Run Android instrumented tests
run: ./gradlew cleanManagedDevices --unused-only &&
./gradlew --stacktrace androidGroupDebugAndroidTest -Dorg.gradle.workers.max=1
-Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect" -Pandroid.experimental.testOptions.managedDevices.emulator.showKernelLogging=true --info
./gradlew --stacktrace androidGroupDebugAndroidTest
-Dorg.gradle.workers.max=1
-Pandroid.testoptions.manageddevices.emulator.gpu="swiftshader_indirect"

- name: Publish test report
uses: mikepenz/action-junit-report@v3
Expand All @@ -55,10 +56,11 @@ jobs:
report_paths: '**/build/test-results/**/TEST-*.xml'

- name: Analyze
if: ${{ false }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
run: ./gradlew --no-daemon --stacktrace testCodeCoverageReport sonarqube
run: ./gradlew --stacktrace :app-android:createDebugUnitTestCoverageReport sonar

- name: Publish Development Version
run: echo "TODO"
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ See [changeset](https://github.com/wmontwe/blueprint-mobile/compare/v0.1.0...mai

- Bitfunk Versioning 0.1.2

### Changed

- Change emulator to Gradle managed devices for local and CI builds

### Bumped

- Gradle 7.5.1 -> 8.0.1
Expand Down
3 changes: 3 additions & 0 deletions app-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ android {
}

buildTypes {
getByName("debug") {
enableUnitTestCoverage = true
}
getByName("release") {
isMinifyEnabled = false
proguardFiles(
Expand Down

0 comments on commit 19e16c1

Please sign in to comment.