diff --git a/zorg/buildbot/builders/SphinxDocsBuilder.py b/zorg/buildbot/builders/SphinxDocsBuilder.py index 30c87434..13a8ce9f 100644 --- a/zorg/buildbot/builders/SphinxDocsBuilder.py +++ b/zorg/buildbot/builders/SphinxDocsBuilder.py @@ -176,6 +176,12 @@ def getSphinxRuntimesDocsBuildFactory( src_to_build_dir='runtimes', **kwargs) # Pass through all the extra arguments. + f.addStep(ShellCommand( + name="Install pip dependencies", + command=['pip install -r llvm/docs/requirements-hashed.txt'], + workdir=f.llvm_srcdir, + )) + UnifiedTreeBuilder.addCmakeSteps( f, cleanBuildRequested=f.cleanBuildRequested,