[zorg] r329138 - [zorg] Switch to secure http for checking out test-suite.
Galina Kistanova via llvm-commits
llvm-commits at lists.llvm.org
Tue Apr 3 17:54:30 PDT 2018
Author: gkistanova
Date: Tue Apr 3 17:54:30 2018
New Revision: 329138
URL: http://llvm.org/viewvc/llvm-project?rev=329138&view=rev
Log:
[zorg] Switch to secure http for checking out test-suite.
There are a few files in the test-suite that appear to be flagged as files that contain viruses. As a result, some build slaves can't extract the test suite and continue to fail. We were advised over IRC that the way to work around that is to use https instead of http.
Of course, this is a workaround, but we definitely need it to get our BE lnt bot (http://lab.llvm.org:8011/builders/clang-ppc64be-linux-lnt) back online.
Patch by Nemanja Ivanovic.
Differential Revision: https://reviews.llvm.org/D44731
Modified:
zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
Modified: zorg/trunk/zorg/buildbot/builders/ClangBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/ClangBuilder.py?rev=329138&r1=329137&r2=329138&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/ClangBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/ClangBuilder.py Tue Apr 3 17:54:30 2018
@@ -370,7 +370,7 @@ def addSVNUpdateSteps(f,
defaultBranch='trunk',
workdir='test/lnt'))
f.addStep(SVN(name='svn-test-suite',
- mode='update', baseURL='http://llvm.org/svn/llvm-project/test-suite/',
+ mode='update', baseURL='https://llvm.org/svn/llvm-project/test-suite/',
defaultBranch='trunk',
workdir='test/test-suite'))
if checkout_lld:
More information about the llvm-commits
mailing list