From dcf0bf475abaa757539b9fa16467f887015aa033 Mon Sep 17 00:00:00 2001 From: Don Turner Date: Fri, 11 Nov 2022 18:33:47 +0000 Subject: [PATCH] Remove --stacktrace from CI as it's difficult to find the error Change-Id: Ie7be474a24367b17658a04a281bf8051f3f5ffd1 --- .github/workflows/Build.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Build.yaml b/.github/workflows/Build.yaml index 54dbcb252..a047a451a 100644 --- a/.github/workflows/Build.yaml +++ b/.github/workflows/Build.yaml @@ -34,16 +34,16 @@ jobs: uses: gradle/gradle-build-action@v2 - name: Check spotless - run: ./gradlew spotlessCheck --init-script gradle/init.gradle.kts --no-configuration-cache --stacktrace + run: ./gradlew spotlessCheck --init-script gradle/init.gradle.kts --no-configuration-cache - name: Check lint - run: ./gradlew lintDemoDebug --stacktrace + run: ./gradlew lintDemoDebug - name: Build all build type and flavor permutations - run: ./gradlew assemble --stacktrace + run: ./gradlew assemble - name: Run local tests - run: ./gradlew testDemoDebug testProdDebug --stacktrace + run: ./gradlew testDemoDebug testProdDebug - name: Upload build outputs (APKs) uses: actions/upload-artifact@v3 @@ -90,7 +90,7 @@ jobs: disable-animations: true disk-size: 6000M heap-size: 600M - script: ./gradlew connectedProdDebugAndroidTest -x :benchmark:connectedProdBenchmarkAndroidTest --stacktrace + script: ./gradlew connectedProdDebugAndroidTest -x :benchmark:connectedProdBenchmarkAndroidTest - name: Upload test reports if: always()