[zorg] r352836 - Opt documentation bots out of toolchain check

JF Bastien via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 31 21:03:45 PST 2019


Author: jfb
Date: Thu Jan 31 21:03:44 2019
New Revision: 352836

URL: http://llvm.org/viewvc/llvm-project?rev=352836&view=rev
Log:
Opt documentation bots out of toolchain check

Summary: Documentation bot clang-tools-sphinx-docs is failing when I commit D57264 because the GCC version it uses is too old (it's on 4.9.2). This doesn't really matter for now, but really you should update it. Work around the issue for now with the cmake opt-out flag, and let bot maintainers update their toolchain asynchronously.

Reviewers: gkistanova, alexfh, EricWF, gribozavr, serge-sans-paille

Subscribers: jkorous, dexonsmith

Differential Revision: https://reviews.llvm.org/D57564

Modified:
    zorg/trunk/zorg/buildbot/builders/SphinxDocsBuilder.py

Modified: zorg/trunk/zorg/buildbot/builders/SphinxDocsBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/SphinxDocsBuilder.py?rev=352836&r1=352835&r2=352836&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/SphinxDocsBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/SphinxDocsBuilder.py Thu Jan 31 21:03:44 2019
@@ -80,7 +80,8 @@ def getSphinxDocsBuildFactory(
                      '-G', 'Ninja',
                      '-DLLVM_ENABLE_SPHINX:BOOL=ON',
                      '-DSPHINX_OUTPUT_HTML:BOOL=ON',
-                     '-DSPHINX_OUTPUT_MAN:BOOL=ON'
+                     '-DSPHINX_OUTPUT_MAN:BOOL=ON',
+                     '-DLLVM_TEMPORARILY_ALLOW_OLD_TOOLCHAIN=ON',
                    ]
     f.addStep(ShellCommand(name="cmake-configure",
                                command=cmakeCommand,




More information about the llvm-commits mailing list