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: builders don't us


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: builders don't use deployment code cloned by the builder step, instead they use the one provided by the dedicated update_deployment.sh script.
Date: Mon, 27 Nov 2017 12:46:20 +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 2769d6b  builders don't use deployment code cloned by the builder 
step, instead they use the one provided by the dedicated update_deployment.sh 
script.
2769d6b is described below

commit 2769d6b8fac9dd45da2f4203d667a9d53dae30e4
Author: Marcello Stanisci <address@hidden>
AuthorDate: Mon Nov 27 12:44:12 2017 +0100

    builders don't use deployment code cloned by the
    builder step, instead they use the one provided by
    the dedicated update_deployment.sh script.
---
 buildbot/master.cfg              | 16 ++++++----------
 taler-build/update_deployment.sh |  2 --
 2 files changed, 6 insertions(+), 12 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index adac28a..887eb19 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -161,42 +161,38 @@ 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="build/taler-build"))
+    workdir="${HOME}/deployment/taler-build"))
 LINT_FACTORY.addStep(ShellCommand(
     name="linting",
     description="Linting..",
     descriptionDone="Linted",
     command=["make", "-f", "MakefileLint"],
-    workdir="build/taler-build"))
+    workdir="${HOME}/deployment/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="build/taler-build"))
+    workdir="${HOME}/deployment/taler-build"))
 LCOV_FACTORY.addStep(ShellCommand(
     name="build",
     description="Compiling..",
     descriptionDone="lcov files generated",
     command=["make", "lcov"],
-    workdir="build/taler-build",
+    workdir="${HOME}/taler-build",
     env={"PATH": "${HOME}/local/bin:${PATH}",
          "TALER_CHECKDB": 
"postgresql:///talercheck?host=/home/${USER}/sockets"}))
 
 SWITCHER_FACTORY = util.BuildFactory()
-SWITCHER_FACTORY.addStep(git_step(
-    'git://git.taler.net/deployment.git'))
+SWITCHER_FACTORY.git_step(
+    "git://git.taler.net/deployment.git")
 SWITCHER_FACTORY.addStep(ShellCommand(
     name="build",
     description="Building inactive blue-green party.",
diff --git a/taler-build/update_deployment.sh b/taler-build/update_deployment.sh
index c3ebe4a..e539258 100755
--- a/taler-build/update_deployment.sh
+++ b/taler-build/update_deployment.sh
@@ -8,10 +8,8 @@
 set -eu
 
 cd $HOME/deployment
-git clean -fdx
 
 git fetch
 # reset to updated upstream branch, but only if we're tracking a branch
 branch=$(git rev-parse --abbrev-ref --symbolic-full-name @{u} 2>/dev/null || 
echo HEAD)
 git reset --hard "$branch"
-

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



reply via email to

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