Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
danfowler committed Nov 1, 2023
1 parent 9aa447a commit 00e47af
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 62 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# This workflow will build and test the project with Gradle
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle

name: Android CI

on: push
Expand All @@ -27,6 +24,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # required for SonarCloud

- name: Set up JDK 17
uses: actions/setup-java@v3
Expand Down Expand Up @@ -56,6 +55,8 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0 # required for SonarCloud

- name: Set up JDK 17
uses: actions/setup-java@v3
Expand Down Expand Up @@ -88,13 +89,15 @@ jobs:

- name: Run instrumentation tests
uses: reactivecircus/android-emulator-runner@v2
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
with:
api-level: ${{ matrix.api-level }}
disable-animations: true
force-avd-creation: false
profile: Nexus 6
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
script: ./gradlew sdk:connectedProductionDebugAndroidTest
script: ./gradlew sdk:connectedProductionDebugAndroidTest sdk:jacocoTestReport sdk:sonar

- name: Upload test report
if: always()
Expand Down
58 changes: 0 additions & 58 deletions .github/workflows/coverage.yml

This file was deleted.

0 comments on commit 00e47af

Please sign in to comment.