From 22cd474297f9a11924b7c2a2bb9bd4049f2b18e0 Mon Sep 17 00:00:00 2001 From: Kyle Ferriter Date: Mon, 4 Nov 2024 14:46:40 -0700 Subject: [PATCH] Update html build command and error check in ci --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0ff06f99..441fd080 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,4 +36,6 @@ jobs: - name: Build HTML run: | - SPHINXOPTS='-W --keep-going' make html + # -W is too noisy as it treats all warnings as errors and we have a lot of warnings + # SPHINXOPTS='-W --keep-going' make html + make html 2>&1 | grep -E "ERROR|CRITICAL"