Skip to content

Fix the non-squoosh renderer not able to close the overlay #2962

Fix the non-squoosh renderer not able to close the overlay

Fix the non-squoosh renderer not able to close the overlay #2962

# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Adapted from https://github.com/takahirom/roborazzi-compare-on-github-comment-sample/blob/main/.github/workflows/StoreScreenshot.yml
name: RecordScreenshot
on:
push:
branches:
- main
- dependapool
- 'stable/**'
- 'feature/**'
pull_request:
permissions: {}
jobs:
record-current-screenshots:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read # for clone
actions: write # for upload-artifact
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
egress-policy: audit
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Set up Build
uses: ./.github/actions/setup-build
with:
setup-gradle: true
setup-protoc: true
- name: Record fresh screenshots
run: ./gradlew recordRoborazziDebug
# These screenshots are stored to use as a baseline for future runs of the
# roborazzi-compare-screenshot workflow
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4.4.0
with:
name: screenshots
path: |
**/src/testDebug/roborazzi
retention-days: 30