From 98e9947a06b9fdaac7db62113c17bcb189a49267 Mon Sep 17 00:00:00 2001 From: Kai Lueke Date: Wed, 20 Apr 2022 12:40:44 +0900 Subject: [PATCH] ci-automation: silence rsync The rsync copy logs made it hard to navigate the job output. Remove the --progress and -v flags. --- ci-automation/ci_automation_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci-automation/ci_automation_common.sh b/ci-automation/ci_automation_common.sh index dd7c4f7536..82cf997d2f 100644 --- a/ci-automation/ci_automation_common.sh +++ b/ci-automation/ci_automation_common.sh @@ -129,7 +129,7 @@ function copy_to_buildcache() { $sshcmd "${BUILDCACHE_USER}@${BUILDCACHE_SERVER}" \ "mkdir -p ${remote_path}" - rsync -Pav -e "${sshcmd}" "$@" \ + rsync --partial -a -e "${sshcmd}" "$@" \ "${BUILDCACHE_USER}@${BUILDCACHE_SERVER}:${remote_path}" } # --