forked from scikit-learn/scikit-learn
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
24 lines (24 loc) · 680 Bytes
/
circle.yml
File metadata and controls
24 lines (24 loc) · 680 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
dependencies:
cache_directories:
- "~/scikit_learn_data"
- "~/scikit-learn.github.io"
- "~/download"
# Check whether the doc build is required, install build dependencies and
# run sphinx to build the doc.
override:
- ./build_tools/circle/build_doc.sh:
timeout: 3600 # seconds
test:
# Grep error on the documentation
override:
- cat ~/log.txt && if grep -q "Traceback (most recent call last):" ~/log.txt; then false; else true; fi
deployment:
push:
branch: /^master$|^[0-9]+\.[0-9]+\.X$/
commands:
- bash build_tools/circle/push_doc.sh
general:
# Open the doc to the API
artifacts:
- "doc/_build/html"
- "~/log.txt"