summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-24 17:17:19 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-24 17:17:19 +0100
commit84f626df1f9bb24b56b1ffe03c12a5e08261c744 (patch)
tree5fc7e0fa7304a71bb93befd6eb78454bff35a9db
parenta463833b8432297580f201269f1142dd1421b270 (diff)
downloaddeployment-84f626df1f9bb24b56b1ffe03c12a5e08261c744.tar.gz
deployment-84f626df1f9bb24b56b1ffe03c12a5e08261c744.tar.bz2
deployment-84f626df1f9bb24b56b1ffe03c12a5e08261c744.zip
clean old objects before test (#4439)
-rw-r--r--buildbot/master.cfg9
1 files changed, 9 insertions, 0 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 0918b06..c051c5d 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -489,6 +489,15 @@ LINT_FACTORY.addStep(
CHECKER_FACTORY = create_factory_with_deployment()
CHECKER_FACTORY.addStep(
ShellCommand(
+ name="remove old binaries",
+ description="removing binaries from previous runs",
+ descriptionDone="Setup clean",
+ command=["rm", "-rf", "local"],
+ workdir="../.."
+ )
+)
+CHECKER_FACTORY.addStep(
+ ShellCommand(
name="fetch gnunet.org sources",
description="fetching latest deployment repositories from git.gnunet.org",
descriptionDone="GNUnet code base updated",