Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2171d95 commit ae2f807Copy full SHA for ae2f807
1 file changed
.circleci/config.yml
@@ -141,14 +141,19 @@ commands:
141
[ "$CIRCLE_PR_NUMBER" = "" ]; then
142
export RELEASE_TAG='-t release'
143
fi
144
- make html O="-T $RELEASE_TAG -j4"
+ make html O="-T $RELEASE_TAG -j4 -w /tmp/sphinxerrorswarnings.log"
145
rm -r build/html/_sources
146
working_directory: doc
147
- save_cache:
148
key: sphinx-env-v1-{{ .BuildNum }}-{{ .Environment.CIRCLE_JOB }}
149
paths:
150
- doc/build/doctrees
151
152
+ doc-show-errors-warnings:
153
+ steps:
154
+ - run:
155
+ grep "WARNING\|ERROR" /tmp/sphinxerrorswarnings.log
156
+
157
doc-bundle:
158
steps:
159
- run:
@@ -186,6 +191,7 @@ jobs:
186
191
- doc-deps-install
187
192
188
193
- doc-build
194
+ - doc-show-errors-warnings
189
195
190
196
- doc-bundle
197
0 commit comments