Skip to content

Commit

Permalink
Development: Try out github runner for Android tests
Browse files Browse the repository at this point in the history
  • Loading branch information
krusche committed Oct 4, 2024
1 parent b445c66 commit 33f1ba3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: JUnit Tests (no end-to-end)
name: JUnit Tests

on:
push:
Expand All @@ -10,13 +10,10 @@ on:
jobs:
jUnit:
name: JUnit Tests
runs-on: [self-hosted, ase-large-android-sdk-35]
runs-on: ubuntu-latest
timeout-minutes: 60

steps:
- name: Set Android Sdk Env
run: export ANDROID_HOME=/usr/lib/android-sdk

- uses: actions/checkout@v4

- name: Set local.properties
Expand All @@ -28,9 +25,12 @@ jobs:
- name: JDK setup
uses: actions/setup-java@v3
with:
distribution: 'zulu'
distribution: 'temurin'
java-version: 17

- name: Setup Android SDK
uses: android-actions/setup-android@v3

- name: run tests
run: ./gradlew test -Dskip.unit-tests=false -Dskip.e2e=true -Dskip.debugVariants=true -Dskip.flavor.unrestricted=true -Dskip.flavor.beta=true

Expand Down

0 comments on commit 33f1ba3

Please sign in to comment.