From fd5f4e97cd3cf09ae10f6ec753f431c626657702 Mon Sep 17 00:00:00 2001 From: Jose Alcerreca Date: Fri, 31 May 2024 12:28:14 +0200 Subject: [PATCH] Trying again with two emulator steps --- .github/workflows/Build.yaml | 28 ++++++++++++++++++++++++---- 1 file changed, 24 insertions(+), 4 deletions(-) diff --git a/.github/workflows/Build.yaml b/.github/workflows/Build.yaml index d0822d533..ac51f2ac6 100644 --- a/.github/workflows/Build.yaml +++ b/.github/workflows/Build.yaml @@ -309,7 +309,7 @@ jobs: - name: Build projects and run instrumented screenshot tests id: dropshotsverify - continue-on-error: false + continue-on-error: true uses: reactivecircus/android-emulator-runner@v2 with: api-level: ${{ matrix.api-level }} @@ -324,7 +324,7 @@ jobs: # Run tests, if they fail, record screenshots and exit with a failure #TODO: Split the script in multiple lines (note that the action does some parsing that breaks multiline) script: - set +e ; if ./gradlew :app:connectedDemoDebugAndroidTest -Pandroid.testInstrumentationRunnerArguments.annotation=com.google.samples.apps.nowinandroid.ui.InstrumentedScreenshotTests -i --daemon ; then echo "All screenshot tests passed" ; else echo "Recording new goldens" ; ./gradlew :app:connectedDemoDebugAndroidTest -Pandroid.testInstrumentationRunnerArguments.annotation=com.google.samples.apps.nowinandroid.ui.InstrumentedScreenshotTests -Pdropshots.record --daemon -i --stacktrace && echo "newgoldens=true" >> $GITHUB_OUTPUT ; fi + ./gradlew :app:connectedDemoDebugAndroidTest -Pandroid.testInstrumentationRunnerArguments.annotation=com.google.samples.apps.nowinandroid.ui.InstrumentedScreenshotTests -i --daemon - name: Prevent pushing new screenshots if this is a fork id: checkfork_screenshots_instrumented @@ -333,15 +333,35 @@ jobs: run: | echo "::error::Instrumented screenshot tests failed, please create a PR in your fork first." && exit 1 + - name: Record new screenshots if verification failed + id: dropshotsverify + continue-on-error: false + if: steps.dropshotsverify.outcome == 'failure' + uses: reactivecircus/android-emulator-runner@v2 + with: + api-level: ${{ matrix.api-level }} + target: ${{ matrix.target }} + arch: x86_64 + disable-animations: true + disk-size: 6000M + emulator-build: 11834374 # 34.2.14 + heap-size: 600M + profile: ${{ matrix.profile }} + emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none + # Run tests, if they fail, record screenshots and exit with a failure + #TODO: Split the script in multiple lines (note that the action does some parsing that breaks multiline) + script: + ./gradlew :app:connectedDemoDebugAndroidTest -Pandroid.testInstrumentationRunnerArguments.annotation=com.google.samples.apps.nowinandroid.ui.InstrumentedScreenshotTests -Pdropshots.record --daemon -i --stacktrace + - name: Checkout new changes (in case another job already uploaded screenshots) uses: actions/checkout@v4 - if: steps.dropshotsverify.outputs.newgoldens == 'true' +# if: steps.dropshotsverify.outputs.newgoldens == 'true' with: clean: false - name: Push new device screenshots if available uses: stefanzweifel/git-auto-commit-action@4b8a201e31cadd9829df349894b28c54e6c19fe6 - if: steps.dropshotsverify.outputs.newgoldens == 'true' +# if: steps.dropshotsverify.outputs.newgoldens == 'true' with: file_pattern: 'app/src/androidTest/screenshots/*.png' disable_globbing: true