diff mbox series

[1/1] CI: treat documentation warnings as errors

Message ID 20230502030411.141708-1-heinrich.schuchardt@canonical.com
State Accepted, archived
Commit 8a6414d1e410ab65780a4c5eb99e79e5b9bc21c1
Delegated to: Heinrich Schuchardt
Headers show
Series [1/1] CI: treat documentation warnings as errors | expand

Commit Message

Heinrich Schuchardt May 2, 2023, 3:04 a.m. UTC
We do not want to merge documentation that produces Sphinx warnings.

scripts/kernel-doc uses environment variable KDOC_WERROR to determine
if warnings should be treated as errors.

Reported-by: Tom Rini <trini@konsulko.com>
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
---
 .azure-pipelines.yml | 2 +-
 .gitlab-ci.yml       | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Simon Glass May 2, 2023, 5:12 p.m. UTC | #1
On Mon, 1 May 2023 at 21:04, Heinrich Schuchardt
<heinrich.schuchardt@canonical.com> wrote:
>
> We do not want to merge documentation that produces Sphinx warnings.
>
> scripts/kernel-doc uses environment variable KDOC_WERROR to determine
> if warnings should be treated as errors.
>
> Reported-by: Tom Rini <trini@konsulko.com>
> Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
> ---
>  .azure-pipelines.yml | 2 +-
>  .gitlab-ci.yml       | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>
diff mbox series

Patch

diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 76ffdeebd6..3c1846a5bc 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -89,7 +89,7 @@  stages:
           virtualenv -p /usr/bin/python3 /tmp/venvhtml
           . /tmp/venvhtml/bin/activate
           pip install -r doc/sphinx/requirements.txt
-          make htmldocs
+          make htmldocs KDOC_WERROR=1
           make infodocs
 
   - job: todo
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b193fee98f..e6c6ab3586 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -171,7 +171,7 @@  docs:
     - virtualenv -p /usr/bin/python3 /tmp/venvhtml
     - . /tmp/venvhtml/bin/activate
     - pip install -r doc/sphinx/requirements.txt
-    - make htmldocs
+    - make htmldocs KDOC_WERROR=1
     - make infodocs
 
 # some statistics about the code base