-
Notifications
You must be signed in to change notification settings - Fork 0
/
circle.yml
52 lines (42 loc) · 1.31 KB
/
circle.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
checkout:
post:
- ./build_tools/circle/checkout_merge_commit.sh
machine:
environment:
# The github organization or username of the repository which hosts the
# project and documentation.
USERNAME: "glemaitre"
# The name of the organization which host the repositories
ORGANIZATION: "pydicom"
# The repository where the documentation will be hosted
DOC_REPO: "pydicom"
# The base URL for the Github page where the documentation will be hosted
DOC_URL: ""
# The email is to be used for commits in the Github Page
EMAIL: "[email protected]"
MINICONDA_PATH: $HOME/miniconda
CONDA_ENV_NAME: testenv
dependencies:
# 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"
# Restric the build to the branch master only
branches:
ignore:
- gh-pages