Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions zorg/buildbot/builders/SphinxDocsBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.txt'],
workdir=llvm_srcdir,
))

UnifiedTreeBuilder.addCmakeSteps(
f,
cleanBuildRequested=f.cleanBuildRequested,
Expand Down
Loading