Skip to content

Commit 31b059e

Browse files
committed
Sleep before rsync to avoid remote file locking issue
1 parent 69f0ac4 commit 31b059e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

ci/linux-repository-builder/build-linux-repositories.sh

+4
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,10 @@ function rsync_repo {
135135
local remote_repo_dir=$2
136136

137137
echo "Syncing to $repository_server_upload_domain:$remote_repo_dir"
138+
# We have an issue where the rsync can fail due to the remote dir being locked (only one rsync at a time allowed)
139+
# We suspect this is because of too fast subsequent invocations of rsync to the same target dir. With a hacky sleep
140+
# we hope to avoid this issue for now.
141+
sleep 10
138142
rsync -av --delete --mkpath --rsh='ssh -p 1122' \
139143
"$local_repo_dir"/ \
140144
build@"$repository_server_upload_domain":"$remote_repo_dir"

0 commit comments

Comments
 (0)