gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [taler-deployment] branch master updated: Reverting pulling


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: Reverting pulling deployment code beforehand. It's not possible to make $HOME the cwd without creating a new worker.
Date: Tue, 28 Nov 2017 13:46:29 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new b1eeca8  Reverting pulling deployment code beforehand.  It's not 
possible to make $HOME the cwd without creating a new worker.
b1eeca8 is described below

commit b1eeca839e80934db2d064ed003602f20432fb1a
Author: Marcello Stanisci <address@hidden>
AuthorDate: Tue Nov 28 13:45:01 2017 +0100

    Reverting pulling deployment code beforehand.  It's not
    possible to make $HOME the cwd without creating a new worker.
---
 buildbot/master.cfg | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 68ad76e..6e4cf94 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -161,32 +161,36 @@ DEBUG_FACTORY.addStep(ShellCommand(
     command=["echo", "I'm here!"]))
 
 LINT_FACTORY = util.BuildFactory()
+LINT_FACTORY.addStep(git_step(
+    "git://git.taler.net/deployment.git"))
 LINT_FACTORY.addStep(ShellCommand(
     name="invalidation",
     description="checking changes",
     descriptionDone="changes checked",
     command=["./invalidate.sh", "--lint"],
-    workdir="${HOME}/deployment/taler-build"))
+    workdir="build/taler-build"))
 LINT_FACTORY.addStep(ShellCommand(
     name="linting",
     description="Linting..",
     descriptionDone="Linted",
     command=["make", "-f", "MakefileLint"],
-    workdir="${HOME}/deployment/taler-build"))
+    workdir="build/taler-build"))
 
 LCOV_FACTORY = util.BuildFactory()
+LCOV_FACTORY.addStep(git_step(
+    "git://git.taler.net/deployment.git"))
 LCOV_FACTORY.addStep(ShellCommand(
     name="invalidation",
     description="Invalidating timestamps",
     descriptionDone="timestamps invalidated",
     command=["./invalidate.sh"],
-    workdir="${HOME}/deployment/taler-build"))
+    workdir="build/taler-build"))
 LCOV_FACTORY.addStep(ShellCommand(
     name="build",
     description="Compiling..",
     descriptionDone="lcov files generated",
     command=["make", "lcov"],
-    workdir="${HOME}/taler-build",
+    workdir="build/taler-build",
     env={"PATH": "${HOME}/local/bin:${PATH}",
          "TALER_CHECKDB": 
"postgresql:///talercheck?host=/home/${USER}/sockets"}))
 

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]