forked from scikit-image/scikit-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yml
36 lines (34 loc) · 941 Bytes
/
config.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
version: 2
jobs:
doc:
docker:
- image: circleci/python:3.8.2
steps:
- checkout
- run:
name: install dependencies and package
command: |
python -m venv skimage_venv
source skimage_venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements/build.txt
python -m pip install -e . -vv
python -m pip install -r requirements/default.txt
python -m pip install -r requirements/docs.txt
export
- run:
name: build doc
no_output_timeout: 50m
command: |
source skimage_venv/bin/activate
cd doc
make clean
make html
- store_artifacts:
path: doc/build/html
destination: doc/build/html
workflows:
version: 2
build-doc:
jobs:
- doc