File tree Expand file tree Collapse file tree 1 file changed +0
-35
lines changed Expand file tree Collapse file tree 1 file changed +0
-35
lines changed Original file line number Diff line number Diff line change 1
1
version : 2
2
2
3
3
jobs :
4
- documentation :
5
- docker :
6
- - image : circleci/python:3.8
7
- environment :
8
- - OMP_NUM_THREADS : 2
9
- - MKL_NUM_THREADS : 2
10
- steps :
11
- - checkout
12
- - run :
13
- command : |
14
- wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
15
- chmod +x miniconda.sh && ./miniconda.sh -b -p ~/miniconda
16
- export PATH="~/miniconda/bin:$PATH"
17
- conda update --yes --quiet conda
18
- conda create -n testenv --yes --quiet python=3.8
19
- source activate testenv
20
- pip install ".[docs]"
21
- cd doc
22
- make html
23
- - store_artifacts :
24
- path : doc/_build/html
25
- destination : doc
26
- - store_artifacts :
27
- path : ~/log.txt
28
- - persist_to_workspace :
29
- root : doc/_build/html
30
- paths : .
31
- - attach_workspace :
32
- at : doc/_build/html
33
- - run : ls -ltrh doc/_build/html
34
- filters :
35
- branches :
36
- ignore : gh-pages
37
-
38
4
lint :
39
5
docker :
40
6
- image : circleci/python:3.7.6
@@ -53,5 +19,4 @@ workflows:
53
19
version : 2
54
20
build-doc-and-deploy :
55
21
jobs :
56
- - documentation
57
22
- lint
You can’t perform that action at this time.
0 commit comments