Skip to content

Try parallel Sphinx builds and hide progress #13241

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 28, 2020
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: pip install -r _build/.requirements.txt

- name: "Build documentation"
run: make -C _build SPHINXOPTS=-nW html
run: make -C _build SPHINXOPTS=-nqW html

doctor-rst:
name: DOCtor-RST
Expand Down
2 changes: 1 addition & 1 deletion _build/.requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ requests==2.20.0
six==1.10.0
snowballstemmer==1.2.1
sphinx==1.3.6
git+https://github.com/fabpot/sphinx-php.git@7312eccce9465640752e51373a480da700e02345#egg_name=sphinx-php
git+https://github.com/fabpot/sphinx-php.git@v1.0.14#egg_name=sphinx-php
2 changes: 2 additions & 0 deletions _build/_themes/_exts/symfonycom/sphinx/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,3 +161,5 @@ class SensioStyle(Style):

def setup(app):
app.set_translator('html', SensioHTMLTranslator)

return {'parallel_read_safe': True}
2 changes: 1 addition & 1 deletion _build/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
extensions = [
'sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo',
'sensio.sphinx.refinclude', 'sensio.sphinx.configurationblock', 'sensio.sphinx.phpcode', 'sensio.sphinx.bestpractice', 'sensio.sphinx.codeblock',
'sensio.sphinx.configurationblock', 'sensio.sphinx.phpcode', 'sensio.sphinx.bestpractice', 'sensio.sphinx.codeblock',
'symfonycom.sphinx'
#,'sphinxcontrib.spelling'
]
Expand Down