File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 17
17
python3 -m venv venv
18
18
source venv/bin/activate
19
19
pip install --upgrade pip wheel setuptools
20
- pip install -r site/requirements.txt -r requirements.txt
20
+ pip install -r requirements.txt
21
21
22
22
- restore_cache :
23
23
keys :
@@ -32,18 +32,18 @@ jobs:
32
32
source venv/bin/activate
33
33
# n = nitpicky (broken links), W = warnings as errors,
34
34
# T = full tracebacks, keep-going = run to completion even with errors
35
- make -C site/ SPHINXOPTS="-nWT --keep-going" html
35
+ make SPHINXOPTS="-nWT --keep-going" html
36
36
37
37
- save_cache :
38
38
key : cache-data
39
39
paths :
40
40
- _data
41
41
42
42
- store_artifacts :
43
- path : site/ _build/html
43
+ path : _build/html
44
44
45
45
- persist_to_workspace :
46
- root : site/ _build
46
+ root : _build
47
47
paths : html
48
48
49
49
deploy-docs :
54
54
- checkout
55
55
56
56
- attach_workspace :
57
- at : site/ _build
57
+ at : _build
58
58
59
59
- run :
60
60
name : install deploy deps
75
75
- run :
76
76
name : deploy to gh-pages
77
77
command : |
78
- ghp-import -n -f -p -m "[skip ci] docs build of $CIRCLE_SHA1" site/ _build/html
78
+ ghp-import -n -f -p -m "[skip ci] docs build of $CIRCLE_SHA1" _build/html
79
79
80
80
81
81
workflows :
Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ jobs:
38
38
run : |
39
39
conda info
40
40
conda list
41
- make -C site/ SPHINXOPTS="-nWT --keep-going" html
41
+ make SPHINXOPTS="-nWT --keep-going" html
42
42
43
43
- uses : actions/upload-artifact@v3
44
44
with :
45
45
name : sphinx-build-artifact
46
- path : site/ _build/html/reports
46
+ path : _build/html/reports
47
47
48
48
- name : fail on build errors
49
49
if : steps.build_step.outcome != 'success'
Original file line number Diff line number Diff line change 12
12
# We use these files to specify all the dependencies, and below we override
13
13
# versions for specific testing schenarios
14
14
-rtest_requirements.txt
15
- -rsite/requirements.txt
16
15
-rrequirements.txt
17
16
18
17
# TODO: add the oldest supported versions of all the dependencies here
@@ -33,7 +32,7 @@ commands =
33
32
!buildhtml: bash -c ' find content -name "*.md" | grep -vf ignore_testing | xargs jupytext --to notebook '
34
33
35
34
!buildhtml: pytest --nbval-lax --durations =10 content/
36
- buildhtml: make -C site/ SPHINXOPTS =" -nWT --keep-going" html
35
+ buildhtml: make -C SPHINXOPTS =" -nWT --keep-going" html
37
36
38
37
pip_pre =
39
38
predeps: true
You can’t perform that action at this time.
0 commit comments