[zorg] r366654 - Use https as vcs_protocol for the systemz builder

Ulrich Weigand via llvm-commits llvm-commits at lists.llvm.org
Sun Jul 21 04:48:15 PDT 2019


Author: uweigand
Date: Sun Jul 21 04:48:15 2019
New Revision: 366654

URL: http://llvm.org/viewvc/llvm-project?rev=366654&view=rev
Log:
Use https as vcs_protocol for the systemz builder

This works around firewall issues we were seeing with http.


Modified:
    zorg/trunk/buildbot/osuosl/master/config/slaves.py

Modified: zorg/trunk/buildbot/osuosl/master/config/slaves.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/slaves.py?rev=366654&r1=366653&r2=366654&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/slaves.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/slaves.py Sun Jul 21 04:48:15 2019
@@ -141,7 +141,7 @@ def get_build_slaves():
         create_slave("modules-slave-2", properties={'jobs': 16}, max_builds=1),
 
         # IBM z13 (s390x), Ubuntu 16.04.2
-        create_slave("systemz-1", properties={'jobs': 4}, max_builds=4),
+        create_slave("systemz-1", properties={'jobs': 4, 'vcs_protocol': 'https'}, max_builds=4),
 
         # Ubuntu 14.10 x86_64, Intel(R) Xeon(R) CPU E3-1245 V2 @ 3.40GHz
         create_slave('ericwf-buildslave2', properties={'jobs': 4}, max_builds=2),




More information about the llvm-commits mailing list