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 48dddc0 commit a2369ddCopy full SHA for a2369dd
build_tools/circle/build_doc.sh
@@ -188,9 +188,16 @@ then
188
python build_tools/circle/list_versions.py > doc/versions.rst
189
fi
190
191
+# Install this noise maker on CircleCI to prevent
192
+# "Too long with no output (exceeded 10m0s): context deadline exceeded"
193
+while true; do sleep $((60 * 5)); echo -e '\nStill working ...\n'; done &
194
+noise_maker=$!
195
+
196
# The pipefail is requested to propagate exit code
197
set -o pipefail && cd doc && make $make_args 2>&1 | tee ~/log.txt
198
199
+kill $noise_maker
200
201
# Insert the version warning for deployment
202
find _build/html/stable -name "*.html" | xargs sed -i '/<\/body>/ i \
203
\ <script src="https://scikit-optimize.github.io/versionwarning.js"></script>'
0 commit comments