From dd90d53d1b9c8ca68234a95123afb604a1250882 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Mon, 27 Aug 2018 15:09:09 +0200 Subject: element.py: Do not attempt to pull workspaced elements --- buildstream/element.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/buildstream/element.py b/buildstream/element.py index 2c26999c7..0bc35ce38 100644 --- a/buildstream/element.py +++ b/buildstream/element.py @@ -1669,6 +1669,10 @@ class Element(Plugin): # (bool): Whether a pull operation is pending # def _pull_pending(self): + if self._get_workspace(): + # Workspace builds are never pushed to artifact servers + return False + if self.__strong_cached: # Artifact already in local cache return False -- cgit v1.2.1