[PATCH] D64221: [zorg] Use https for svn-test-suite stage of buildbot
Kamau Bridgeman via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 4 13:11:29 PDT 2019
kamaub created this revision.
kamaub added reviewers: gkistanova, nemanjai.
kamaub added a project: Zorg.
Herald added a project: LLVM.
Herald added a subscriber: llvm-commits.
svn checkout fails at the svn-test-suite stage of the buildbot bcse of a bug with svn when using http. This was originally identified in this [[ https://bugs.llvm.org/show_bug.cgi?id=36358 | bugzilla ]]report and fixed in this patch - rL329138 <https://reviews.llvm.org/rL329138>. A module called LLVMBuildFactory was modified in this patch - rL346382 <https://reviews.llvm.org/rL346382> to handle the svn-test-suite stage but did not account for the need for secure http when running svn-test-suite. The code that did account for this need was replaced with code using the LLVMBuildFactory in this patch - rL346831 <https://reviews.llvm.org/rL346831>.
In this patch edits in patch - rL346382 <https://reviews.llvm.org/rL346382> will be changed to also account for this bugzilla <https://bugs.llvm.org/show_bug.cgi?id=36358>
Repository:
rL LLVM
https://reviews.llvm.org/D64221
Files:
zorg/buildbot/process/factory.py
Index: zorg/buildbot/process/factory.py
===================================================================
--- zorg/buildbot/process/factory.py
+++ zorg/buildbot/process/factory.py
@@ -13,7 +13,7 @@
('libunwind' , ("%(llvm_srcdir)s/projects/libunwind", 'http://llvm.org/svn/llvm-project/libunwind/')),
('lld' , ("%(llvm_srcdir)s/tools/lld", 'http://llvm.org/svn/llvm-project/lld/')),
('lnt' , ("test/lnt", 'http://llvm.org/svn/llvm-project/lnt/')),
- ('test-suite' , ("test/test-suite", 'http://llvm.org/svn/llvm-project/test-suite/')),
+ ('test-suite' , ("test/test-suite", 'https://llvm.org/svn/llvm-project/test-suite/')),
('lldb' , ("%(llvm_srcdir)s/tools/lldb", 'http://llvm.org/svn/llvm-project/lldb/')),
('llgo' , ("%(llvm_srcdir)s/tools/llgo", 'http://llvm.org/svn/llvm-project/llgo/')),
('polly' , ("%(llvm_srcdir)s/tools/polly", 'http://llvm.org/svn/llvm-project/polly/')),
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D64221.208071.patch
Type: text/x-patch
Size: 1116 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190704/1f2bcf59/attachment.bin>
More information about the llvm-commits
mailing list