ci/traces: rename upload function to reflect it works with S3

Cosmetic change.

Acked-by: Emma Anholt <emma@anholt.net>
Signed-off-by: David Heidelberg <david.heidelberg@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25606>
This commit is contained in:
David Heidelberg
2023-10-08 23:09:33 +02:00
committed by Marge Bot
parent 5ab60581da
commit 9786ab7ecd

View File

@@ -125,7 +125,7 @@ if [ -n "$CI_NODE_INDEX" ]; then
fi
# shellcheck disable=SC2317
replay_minio_upload_images() {
replay_s3_upload_images() {
find "$RESULTS/$__PREFIX" -type f -name "*.png" -printf "%P\n" \
| while read -r line; do
@@ -206,7 +206,7 @@ __S3_PATH="$PIGLIT_REPLAY_ARTIFACTS_BASE_URL"
__S3_TRACES_PREFIX="traces"
if [ "$PIGLIT_REPLAY_SUBCOMMAND" != "profile" ]; then
quiet replay_minio_upload_images
quiet replay_s3_upload_images
fi