-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add new docs CI build test activated by flags
* Adds basic testing for the new docs build, which uses pulp-docs to aggregate all docs. * Use flags for switching legacy and/or unified CIs Co-authored-by: Matthias Dellweg <2500@gmx.de> [noissue]
- Loading branch information
Showing
5 changed files
with
23 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Added basic testing to the new docs to check it can build. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,23 @@ | ||
{% include 'header.j2' %} | ||
-r requirements.txt | ||
towncrier | ||
{%- if use_legacy_docs %} | ||
|
||
# Legacy docs | ||
plantuml | ||
sphinx~=7.1.2 | ||
sphinx-rtd-theme==1.3.0 | ||
sphinxcontrib-jquery | ||
sphinxcontrib-openapi | ||
towncrier | ||
mistune<4.0.0 | ||
Jinja2<3.2 | ||
{%- endif %} | ||
{%- if use_unified_docs %} | ||
|
||
# Unified docs | ||
pulp-docs @ git+https://github.com/pulp/pulp-docs@main | ||
{%- endif %} | ||
# Extra requirements | ||
{%- for req in extra_docs_requirements %} | ||
{{ req }} | ||
{%- endfor %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters