We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69f0ac4 commit 31b059eCopy full SHA for 31b059e
ci/linux-repository-builder/build-linux-repositories.sh
@@ -135,6 +135,10 @@ function rsync_repo {
135
local remote_repo_dir=$2
136
137
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
142
rsync -av --delete --mkpath --rsh='ssh -p 1122' \
143
"$local_repo_dir"/ \
144
build@"$repository_server_upload_domain":"$remote_repo_dir"
0 commit comments