gnunet-svn
[Top][All Lists]
Advanced

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

[taler-deployment] branch master updated: Skip building components insta


From: gnunet
Subject: [taler-deployment] branch master updated: Skip building components installed via packaging.
Date: Mon, 15 Feb 2021 18:47:47 +0100

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

ms pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 8f01cba  Skip building components installed via packaging.
8f01cba is described below

commit 8f01cba611301f7841bf6b8212abf8b7661bf357
Author: MS <ms@taler.net>
AuthorDate: Mon Feb 15 18:46:59 2021 +0100

    Skip building components installed via packaging.
---
 bin/taler-deployment | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment
index e2e7b58..58df3db 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -475,7 +475,13 @@ def build() -> None:
     for r in stale:
         p = Path.home() / "sources" / r.name
         os.chdir(str(p))
-        r.builder(r, p)  # type: ignore
+        tag = getattr(cfg, "tag_" + r.name.replace("-", "_"))
+        # Usually a None tag indicates that the artifact was already installed 
+        # via some packaging mechanism, like Debian packages.  There is no
+        # need to build it then.
+        if not tag:
+            continue
+        r.builder(r, p)
 
 
 @cli.command()

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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