Skip to content

Commit 4e16077

Browse files
committed
services/nomad/build/buildbot: add final sync for packages
just in case
1 parent d9f73fc commit 4e16077

1 file changed

Lines changed: 12 additions & 1 deletion

File tree

services/nomad/build/buildbot.cfg

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ from pathlib import Path
1010
from twisted.internet import defer
1111
from twisted.python import log
1212

13-
from buildbot.process.results import SUCCESS
1413
from buildbot.plugins import util, secrets, reporters, worker, schedulers
1514
from buildbot.plugins import steps
1615

@@ -361,6 +360,18 @@ factory.addStep(steps.ShellSequence(
361360
timeout=14400,
362361
))
363362

363+
factory.addStep(steps.ShellCommand(
364+
command=make_rsync_cmd,
365+
name='sync_packages',
366+
description='syncing packages from hostdir',
367+
descriptionDone='synced packages from hostdir',
368+
alwaysRun=True,
369+
logEnviron=False,
370+
usePTY=True,
371+
workdir='.',
372+
timeout=14400,
373+
))
374+
364375
factory.addStep(steps.ShellCommand(
365376
command=make_clean_cmd,
366377
name='clean_packages',

0 commit comments

Comments
 (0)