1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-27 15:13:12 -04:00
Files
egui/scripts/update_snapshots_from_ci.sh
Lucas Meurer f0faacc7d1 Add workflow to accept snapshots via kitdiff (#7577)
This adds a new workflow `update_kittest_snapshots.yml` that can be
triggered through the [kitdiff](https://github.com/rerun-io/kitdiff) ui
when viewing a ci artefact.
Also adds a link to kitdiff to view the pr changes to each commit (via
the preview build comment)

---------

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2025-10-06 15:57:31 +02:00

34 lines
1.1 KiB
Bash
Executable File

#!/usr/bin/env bash
# This script searches for the last CI run with your branch name, downloads the test_results artifact
# and replaces your existing snapshots with the new ones.
# Make sure you have the gh cli installed and authenticated before running this script.
# If prompted to select a default repo, choose the emilk/egui one
set -eu
BRANCH=$(git rev-parse --abbrev-ref HEAD)
if [ -z "${RUN_ID:-}" ]; then
RUN_ID=$(gh run list --branch "$BRANCH" --workflow "Rust" --json databaseId -q '.[0].databaseId')
echo "Downloading test results from run $RUN_ID from branch $BRANCH"
else
echo "Using provided RUN_ID: $RUN_ID"
fi
# remove any existing .new.png that might have been left behind
find . -type d -path "*/tests/snapshots*" | while read dir; do
find "$dir" -type f -name "*.new.png" | while read file; do
rm "$file"
done
done
gh run download "$RUN_ID" --name "test-results" --dir tmp_artefacts
# move the snapshots to the correct location, overwriting the existing ones
rsync -a tmp_artefacts/ .
rm -r tmp_artefacts
./scripts/accept_snapshots.sh