Skip to content
Merged
Changes from all 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
3 changes: 2 additions & 1 deletion zorg/buildbot/builders/SphinxDocsBuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,6 @@ def getLLVMDocsBuildFactory(
"lld",
"lldb",
"flang",
"openmp",
"polly",
]
else:
Expand Down Expand Up @@ -331,6 +330,7 @@ def getLLVMRuntimesDocsBuildFactory(
"libcxxabi",
"libunwind",
"libc",
"openmp"
]
else:
# Make a local copy of depends_on_runtimes, as we are going to modify
Expand Down Expand Up @@ -367,6 +367,7 @@ def getLLVMRuntimesDocsBuildFactory(
("-DSPHINX_WARNINGS_AS_ERRORS=", "OFF"),
("-DLLVM_ENABLE_ASSERTIONS=", "OFF"),
("-DCMAKE_BUILD_TYPE=", "Release"),
("-DLLVM_INCLUDE_TESTS=", "OFF"),
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

omptest currently does not work in the runtimes default build. See llvm/llvm-project#159416 (comment)

])

# Build docs for each of the runtimes this builder depends on
Expand Down