Remove possibility to subclass DmfsTask (#155) #433
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| concurrency: | |
| group: test-dev-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| compile: | |
| name: Compile and cache | |
| if: ${{ github.ref == 'refs/heads/main' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| # See https://community.gradle.org/github-actions/docs/setup-gradle/ for more information | |
| - uses: gradle/actions/setup-gradle@v5 # creates build cache when on main branch | |
| with: | |
| cache-encryption-key: ${{ secrets.gradle_encryption_key }} | |
| dependency-graph: generate-and-submit # submit Github Dependency Graph info | |
| - run: ./gradlew --build-cache --configuration-cache compileDebugSources | |
| test: | |
| needs: compile | |
| if: ${{ !cancelled() }} # even if compile didn't run (because not on main branch) | |
| name: Unit tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - uses: gradle/actions/setup-gradle@v5 | |
| with: | |
| cache-encryption-key: ${{ secrets.gradle_encryption_key }} | |
| cache-read-only: true | |
| - name: Run lint | |
| run: ./gradlew --build-cache --configuration-cache lintDebug | |
| - name: Run unit tests | |
| run: ./gradlew --build-cache --configuration-cache testDebugUnitTest | |
| test_on_emulator: | |
| needs: compile | |
| if: ${{ !cancelled() }} # even if compile didn't run (because not on main branch) | |
| name: Instrumented tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: gradle/actions/setup-gradle@v5 | |
| with: | |
| cache-encryption-key: ${{ secrets.gradle_encryption_key }} | |
| cache-read-only: true | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| - name: Enable KVM group perms | |
| run: | | |
| echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules | |
| sudo udevadm control --reload-rules | |
| sudo udevadm trigger --name-match=kvm | |
| - name: Cache AVD | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.config/.android/avd | |
| key: avd-${{ hashFiles('lib/build.gradle.kts') }} # gradle-managed devices are defined there | |
| - name: Run device tests | |
| run: ./gradlew --no-daemon virtualCheck |