From 0ec1831d1eea9506bb2eeb5cb6a388672ac77b2c Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 9 Mar 2021 22:50:30 +0100 Subject: [PATCH 1/4] with too many dimensions --- .github/workflows/android-integration.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android-integration.yml b/.github/workflows/android-integration.yml index 5c3f4f062f14..a00badeba11a 100644 --- a/.github/workflows/android-integration.yml +++ b/.github/workflows/android-integration.yml @@ -23,12 +23,12 @@ jobs: - name: Screenshots android tests uses: eskatos/gradle-command-action@v1 with: - arguments: compileOffScreenshotsAndroidTestSources --stacktrace --info -PtestBuildType=screenshots + arguments: compileOffPlaystoreScreenshotsAndroidTestSources --stacktrace --info -PtestBuildType=screenshots - name: Unit tests uses: eskatos/gradle-command-action@v1 with: - arguments: testObfDebugUnitTest testOffDebugUnitTest testOpfDebugUnitTest testOpffDebugUnitTest --stacktrace + arguments: testObfPlaystoreDebugUnitTest testOffPlaystoreDebugUnitTest testOpfPlaystoreDebugUnitTest testOpffPlaystoreDebugUnitTest --stacktrace apk: name: Generate APK From 74eccf72ade770dba006fc94794d2f04c321a007 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 9 Mar 2021 22:52:11 +0100 Subject: [PATCH 2/4] Update android-release.yml --- .github/workflows/android-release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/android-release.yml b/.github/workflows/android-release.yml index 8f325670f0da..ac88e0465d0a 100644 --- a/.github/workflows/android-release.yml +++ b/.github/workflows/android-release.yml @@ -21,7 +21,7 @@ jobs: - name: Unit tests uses: eskatos/gradle-command-action@v1 with: - arguments: testObfDebugUnitTest --stacktrace + arguments: testObfPlaystoreDebugUnitTest --stacktrace testOff: name: OFF testing @@ -38,7 +38,7 @@ jobs: - name: Unit tests uses: eskatos/gradle-command-action@v1 with: - arguments: testOffDebugUnitTest --stacktrace + arguments: testOffPlaystoreDebugUnitTest --stacktrace testOpf: name: OPF testing @@ -55,7 +55,7 @@ jobs: - name: Unit tests uses: eskatos/gradle-command-action@v1 with: - arguments: testOpfDebugUnitTest --stacktrace + arguments: testOpfPlaystoreDebugUnitTest --stacktrace testOpff: name: OPFF testing @@ -72,7 +72,7 @@ jobs: - name: Unit tests uses: eskatos/gradle-command-action@v1 with: - arguments: testOpffDebugUnitTest --stacktrace + arguments: testOpffPlaystoreDebugUnitTest --stacktrace google-play-internal: needs: From 84bb8a04139ed5ae1b2e6cf1f27c320774befe14 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 9 Mar 2021 22:53:04 +0100 Subject: [PATCH 3/4] Update android-feature.yml --- .github/workflows/android-feature.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/android-feature.yml b/.github/workflows/android-feature.yml index 17004151d559..d26352b7d704 100644 --- a/.github/workflows/android-feature.yml +++ b/.github/workflows/android-feature.yml @@ -22,7 +22,7 @@ jobs: java-version: 1.8 - name: Screenshots android tests - run: bash ./gradlew compileOffScreenshotsAndroidTestSources --stacktrace --info -PtestBuildType=screenshots + run: bash ./gradlew compileOffPlaystoreScreenshotsAndroidTestSources --stacktrace --info -PtestBuildType=screenshots - name: Unit tests - run: bash ./gradlew testObfDebugUnitTest testOffDebugUnitTest testOpfDebugUnitTest testOpffDebugUnitTest --stacktrace + run: bash ./gradlew testObfPlaystoreDebugUnitTest testOffPlaystoreDebugUnitTest testOpfPlaystoreDebugUnitTest testOpffPlaystoreDebugUnitTest --stacktrace From 7f460293aba25c791a7ef8893e2b11e9005738b0 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 9 Mar 2021 22:55:02 +0100 Subject: [PATCH 4/4] Update Fastfile --- fastlane/Fastfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index d3ab73e6ab4e..63273b77cc45 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -12,11 +12,11 @@ desc "Build debug and test APK for screenshots" ) build_android_app( task: 'assemble', - build_type: 'Debug' + build_type: 'DebugPlaystore' ) build_android_app( task: 'assemble', - build_type: 'AndroidTest' + build_type: 'AndroidTestPlaystore' ) end @@ -53,7 +53,7 @@ lane :release do gradle( project_dir: './', task: 'clean bundle', - build_type: 'offRelease' + build_type: 'offReleasePlaystore' ) #upload the bundle to internal track of play store