ci/traces: rename upload function to reflect it works with S3
authorDavid Heidelberg <david.heidelberg@collabora.com>
Sun, 8 Oct 2023 21:09:33 +0000 (23:09 +0200)
committerMarge Bot <emma+marge@anholt.net>
Tue, 10 Oct 2023 12:46:51 +0000 (12:46 +0000)
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>

.gitlab-ci/piglit/piglit-traces.sh

index 3d0ec42d5d08cd204bde1dca7e71eae927242856..326df1e1d7515fb0e1007010294c0022745a0be0 100755 (executable)
@@ -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