You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by ro...@apache.org on 2020/12/29 13:43:38 UTC

[buildstream] branch coldtom/275 created (now 12f28ba)

This is an automated email from the ASF dual-hosted git repository.

root pushed a change to branch coldtom/275
in repository https://gitbox.apache.org/repos/asf/buildstream.git.


      at 12f28ba  Shorten status message

This branch includes the following new commits:

     new 582dc10  Add record of remote url to log when pushing
     new fe0a33a  Add record of remote url to log when pulling
     new 12f28ba  Shorten status message

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[buildstream] 03/03: Shorten status message

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

root pushed a commit to branch coldtom/275
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 12f28ba4afa7e77ae136a61185da59ec35b0f350
Author: Thomas Coldrick <th...@ct-lt-1266.unassigned>
AuthorDate: Tue Jul 3 10:16:37 2018 +0100

    Shorten status message
---
 buildstream/_artifactcache/ostreecache.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/buildstream/_artifactcache/ostreecache.py b/buildstream/_artifactcache/ostreecache.py
index b4e7552..1d0dee4 100644
--- a/buildstream/_artifactcache/ostreecache.py
+++ b/buildstream/_artifactcache/ostreecache.py
@@ -359,7 +359,7 @@ class OSTreeCache(ArtifactCache):
 
             with element.timed_activity("Sending artifact"), \
                 element._output_file() as output_file:
-                element.info("Pushing artifact {} to {}".format(refs, remote.push_url))
+                element.info("Pushing artifact {} to {}".format(element.name, remote.push_url))
                 try:
                     pushed = push_artifact(temp_repo.get_path().get_path(),
                                            remote.push_url,


[buildstream] 02/03: Add record of remote url to log when pulling

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

root pushed a commit to branch coldtom/275
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit fe0a33ae850bec4c8abb1458e9bc64a1bfd59d83
Author: Thomas Coldrick <th...@ct-lt-1266.unassigned>
AuthorDate: Mon Jun 25 15:33:23 2018 +0100

    Add record of remote url to log when pulling
---
 buildstream/_artifactcache/ostreecache.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/buildstream/_artifactcache/ostreecache.py b/buildstream/_artifactcache/ostreecache.py
index 7415215..b4e7552 100644
--- a/buildstream/_artifactcache/ostreecache.py
+++ b/buildstream/_artifactcache/ostreecache.py
@@ -167,6 +167,7 @@ class OSTreeCache(ArtifactCache):
                 # fetch the artifact from highest priority remote using the specified cache key
                 remote_name = self._ensure_remote(self.repo, remote.pull_url)
                 _ostree.fetch(self.repo, remote=remote_name, ref=ref, progress=progress)
+                element.info("Pulled artifact {} from {}".format(ref, remote.pull_url))
                 return True
             except OSTreeError:
                 # Try next remote


[buildstream] 01/03: Add record of remote url to log when pushing

Posted by ro...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

root pushed a commit to branch coldtom/275
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit 582dc103d86999adcf835bc82c5e62670b6b3dd2
Author: Thomas Coldrick <th...@ct-lt-1266.unassigned>
AuthorDate: Mon Jun 25 15:04:04 2018 +0100

    Add record of remote url to log when pushing
---
 buildstream/_artifactcache/ostreecache.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/buildstream/_artifactcache/ostreecache.py b/buildstream/_artifactcache/ostreecache.py
index 707a974..7415215 100644
--- a/buildstream/_artifactcache/ostreecache.py
+++ b/buildstream/_artifactcache/ostreecache.py
@@ -358,6 +358,7 @@ class OSTreeCache(ArtifactCache):
 
             with element.timed_activity("Sending artifact"), \
                 element._output_file() as output_file:
+                element.info("Pushing artifact {} to {}".format(refs, remote.push_url))
                 try:
                     pushed = push_artifact(temp_repo.get_path().get_path(),
                                            remote.push_url,