File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -208,7 +208,7 @@ jobs:
208
208
name : List packages
209
209
command : python -m pip list
210
210
211
- # Figure out if we should run a full, pattern, or noplot version
211
+ # Figure out if we should run a full build or specify a pattern
212
212
- restore_cache :
213
213
keys :
214
214
- data-cache-tiny-1
@@ -311,7 +311,7 @@ jobs:
311
311
- run :
312
312
name : Reduce artifact upload time
313
313
command : |
314
- if grep -q html-pattern-memory build.txt || grep -q html-noplot build.txt ; then
314
+ if grep -q html-pattern-memory build.txt; then
315
315
zip -rm doc/_build/html/_downloads.zip doc/_build/html/_downloads
316
316
fi
317
317
for NAME in generated auto_tutorials auto_examples; do
Original file line number Diff line number Diff line change 10
10
with :
11
11
repo-token : ${{ secrets.GITHUB_TOKEN }}
12
12
api-token : ${{ secrets.CIRCLECI_TOKEN }}
13
- artifact-path : 0/html/index .html
13
+ artifact-path : 0/html/sg_execution_times .html
14
14
circleci-jobs : build_docs,build_docs_main
15
15
job-title : Check the rendered docs here!
Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ doc/samples
70
70
doc /* .dat
71
71
doc /fil-result
72
72
doc /optipng.exe
73
+ sg_execution_times.rst
73
74
cover
74
75
* .html
75
76
Original file line number Diff line number Diff line change 28
28
@echo " view to view the built HTML"
29
29
30
30
clean :
31
- -rm -rf _build auto_examples auto_tutorials generated * .stc * .fif * .nii.gz
31
+ -rm -rf _build sg_execution_times.rst auto_examples auto_tutorials generated * .stc * .fif * .nii.gz
32
32
33
33
html :
34
34
$(SPHINXBUILD ) -b html $(ALLSPHINXOPTS ) _build/html
Original file line number Diff line number Diff line change @@ -113,11 +113,11 @@ else
113
113
fi ;
114
114
done ;
115
115
echo PATTERN=" $PATTERN " ;
116
+ echo html-pattern-memory > build.txt;
116
117
if [[ $PATTERN ]]; then
117
118
PATTERN=" \(${PATTERN::- 2} \)" ;
118
- echo html-pattern-memory > build.txt;
119
119
else
120
- echo html-noplot > build.txt ;
120
+ PATTERN= " run_no_examples_or_tutorials "
121
121
fi ;
122
122
fi ;
123
123
echo " $PATTERN " > pattern.txt;
You can’t perform that action at this time.
0 commit comments