We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51732db commit d77458eCopy full SHA for d77458e
.circleci/config.yml
@@ -77,6 +77,10 @@ commands:
77
78
doc-build:
79
steps:
80
+ - restore_cache:
81
+ keys:
82
+ - sphinx-env-v1-{{ .BuildNum }}-{{ .Environment.CIRCLE_JOB }}
83
+ - sphinx-env-v1-{{ .Environment.CIRCLE_PREVIOUS_BUILD_NUM }}-{{ .Environment.CIRCLE_JOB }}
84
- run:
85
name: Build documentation
86
command: |
@@ -85,6 +89,10 @@ commands:
89
make html O=-T
90
rm -r build/html/_sources
87
91
working_directory: doc
92
+ - save_cache:
93
+ key: sphinx-env-v1-{{ .BuildNum }}-{{ .Environment.CIRCLE_JOB }}
94
+ paths:
95
+ - doc/build/doctrees
88
96
97
doc-bundle:
98
0 commit comments