Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

send less screenshots to Percy #37

Merged
merged 1 commit into from Mar 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/example-report.yml
Expand Up @@ -243,6 +243,20 @@ jobs:
rm "screenshots-${{ matrix.os }}/UI (User Interface)/font_atlas_debug.png" || true
rm "screenshots-${{ matrix.os }}/Shaders/compute_shader_game_of_life.png" || true

- name: Reduce number of examples sent to Percy
if: steps.gather-examples.outcome == 'success'
run: |
rm -rf "screenshots-${{ matrix.os }}/Application
rm -rf "screenshots-${{ matrix.os }}/Assets
rm -rf "screenshots-${{ matrix.os }}/Audio
rm -rf "screenshots-${{ matrix.os }}/Games
rm -rf "screenshots-${{ matrix.os }}/Input
rm -rf "screenshots-${{ matrix.os }}/Scene
rm -rf "screenshots-${{ matrix.os }}/Time
rm -rf "screenshots-${{ matrix.os }}/Tools
rm -rf "screenshots-${{ matrix.os }}/Transforms
rm -rf "screenshots-${{ matrix.os }}/Window

- name: Send to Percy
if: steps.gather-examples.outcome == 'success'
run: |
Expand Down