From: Thibaut VARÈNE Date: Mon, 24 Oct 2022 10:48:11 +0000 (+0200) Subject: phase1: rsync_src_url is always set X-Git-Tag: v2~39 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=a3c5b501b7604413821330787f52683ad731f7c2;p=buildbot.git phase1: rsync_src_url is always set Signed-off-by: Thibaut VARÈNE --- diff --git a/phase1/master.cfg b/phase1/master.cfg index 13dc148..0b7c609 100644 --- a/phase1/master.cfg +++ b/phase1/master.cfg @@ -1035,24 +1035,23 @@ for target in targets: locks = NetLockUl, )) - if rsync_src_url is not None: - factory.addStep(ShellCommand( - name = "sourcelist", - description = "Finding source archives to upload", - command = "find dl/ -maxdepth 1 -type f -not -size 0 -not -name '.*' -not -name '*.hash' -not -name '*.dl' -newer .config -printf '%f\\n' > sourcelist", - haltOnFailure = True - )) + factory.addStep(ShellCommand( + name = "sourcelist", + description = "Finding source archives to upload", + command = "find dl/ -maxdepth 1 -type f -not -size 0 -not -name '.*' -not -name '*.hash' -not -name '*.dl' -newer .config -printf '%f\\n' > sourcelist", + haltOnFailure = True + )) - factory.addStep(ShellCommand( - name = "sourceupload", - description = "Uploading source archives", - command=["../rsync.sh", "--files-from=sourcelist", "--size-only", "--delay-updates"] + rsync_src_defopts + - [Interpolate("--partial-dir=.~tmp~%(kw:target)s~%(kw:subtarget)s~%(prop:workername)s", target=ts[0], subtarget=ts[1]), "-a", "dl/", "%s/" %(rsync_src_url)], - env={'RSYNC_PASSWORD': rsync_src_key}, - haltOnFailure = True, - logEnviron = False, - locks = NetLockUl, - )) + factory.addStep(ShellCommand( + name = "sourceupload", + description = "Uploading source archives", + command=["../rsync.sh", "--files-from=sourcelist", "--size-only", "--delay-updates"] + rsync_src_defopts + + [Interpolate("--partial-dir=.~tmp~%(kw:target)s~%(kw:subtarget)s~%(prop:workername)s", target=ts[0], subtarget=ts[1]), "-a", "dl/", "%s/" %(rsync_src_url)], + env={'RSYNC_PASSWORD': rsync_src_key}, + haltOnFailure = True, + logEnviron = False, + locks = NetLockUl, + )) factory.addStep(ShellCommand( name = "df",