Skip to content

Commit dcdb97f

Browse files
publish_artifacts: reduce progress frequency to 30 seconds
aws cp can be quite verbose when uploading files, which is not often desired during CI, so reduce the frequency to 30 seconds in order to still have a useful log in case of slow networks. Signed-off-by: Ricardo Salveti <ricardo.salveti@oss.qualcomm.com>
1 parent eab349a commit dcdb97f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

publish_artifacts.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ if ! aws sts get-caller-identity >/dev/null 2>&1; then
88
fi
99

1010
# Step 2: Upload artifacts
11-
aws s3 cp "$INPUT_PATH" "s3://$INPUT_S3_BUCKET/$INPUT_DESTINATION" --recursive
11+
aws s3 cp "$INPUT_PATH" "s3://$INPUT_S3_BUCKET/$INPUT_DESTINATION" --recursive --progress-frequency 30
1212

0 commit comments

Comments
 (0)