From b80765a4b55fa07716b421fb5f77dc5eb7bf1222 Mon Sep 17 00:00:00 2001 From: Wouter J Date: Mon, 24 Feb 2020 23:23:16 +0100 Subject: [PATCH] Hide build progress to clean up output --- .github/workflows/ci.yaml | 2 +- _build/.requirements.txt | 2 +- _build/_themes/_exts/symfonycom/sphinx/__init__.py | 2 ++ _build/conf.py | 2 +- 4 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index d61b084f1e5..3836a4e71d7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -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 diff --git a/_build/.requirements.txt b/_build/.requirements.txt index 6f1f8953dff..b5073dd2e77 100644 --- a/_build/.requirements.txt +++ b/_build/.requirements.txt @@ -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 diff --git a/_build/_themes/_exts/symfonycom/sphinx/__init__.py b/_build/_themes/_exts/symfonycom/sphinx/__init__.py index 426d79826d7..7cba92f2595 100644 --- a/_build/_themes/_exts/symfonycom/sphinx/__init__.py +++ b/_build/_themes/_exts/symfonycom/sphinx/__init__.py @@ -161,3 +161,5 @@ class SensioStyle(Style): def setup(app): app.set_translator('html', SensioHTMLTranslator) + + return {'parallel_read_safe': True} diff --git a/_build/conf.py b/_build/conf.py index 998fb450a08..c6d4bbd3250 100644 --- a/_build/conf.py +++ b/_build/conf.py @@ -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' ]