[PATCH] D69291: Always show an external GitHub URL to LLVM repo with the changes.

Vlad Vereschaka via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Oct 21 18:20:49 PDT 2019


vvereschaka created this revision.
vvereschaka added reviewers: gkistanova, aorlov, andreil99.
vvereschaka added projects: Zorg, LLVM.
Herald added a subscriber: llvm-commits.

The llvm lab buildbot watches the internal mirrored git repository and register this internal url with the sourcestamps for the build requests. But we need to promote a public git url to the LLVM project repo with the sourcestamps. This patch always adds a public url to the source changes.


Repository:
  rL LLVM

https://reviews.llvm.org/D69291

Files:
  zorg/buildbot/changes/llvmgitpoller.py


Index: zorg/buildbot/changes/llvmgitpoller.py
===================================================================
--- zorg/buildbot/changes/llvmgitpoller.py
+++ zorg/buildbot/changes/llvmgitpoller.py
@@ -383,7 +383,8 @@
                        branch=self.branch,
                        category=self._categories.get(where_project, self.category),
                        project=where_project,
-                       repository=self.repourl,
+                       # Always promote an external github url of the LLVM project with the changes.
+                       repository=self._repourl, # self.repourl
                        src='git',
                        properties=properties)
                 wfd = defer.waitForDeferred(d)


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D69291.225985.patch
Type: text/x-patch
Size: 742 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20191022/2c7b182c/attachment.bin>


More information about the llvm-commits mailing list