From ffc9d6ab499ecf7f2697ab149c1650f02f06a1f0 Mon Sep 17 00:00:00 2001 From: Jorge Martin Espinosa Date: Thu, 2 Nov 2023 17:01:33 +0100 Subject: [PATCH] Only build `app` module for Maestro tests. (#1727) This should save some time since the sample module would no longer be built. --- .github/workflows/maestro.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maestro.yml b/.github/workflows/maestro.yml index b433ebe459..abb3feb417 100644 --- a/.github/workflows/maestro.yml +++ b/.github/workflows/maestro.yml @@ -35,7 +35,7 @@ jobs: distribution: 'temurin' # See 'Supported distributions' for available options java-version: '17' - name: Assemble debug APK - run: ./gradlew assembleDebug $CI_GRADLE_ARG_PROPERTIES + run: ./gradlew :app:assembleDebug $CI_GRADLE_ARG_PROPERTIES env: ELEMENT_ANDROID_MAPTILER_API_KEY: ${{ secrets.MAPTILER_KEY }} ELEMENT_ANDROID_MAPTILER_LIGHT_MAP_ID: ${{ secrets.MAPTILER_LIGHT_MAP_ID }}