Thanks to visit codestin.com Credit goes to github.com
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 e9a1733 commit 4d656a5Copy full SHA for 4d656a5
1 file changed
.circleci/config.yml
@@ -78,6 +78,10 @@ commands:
78
79
doc-build:
80
steps:
81
+ - restore_cache:
82
+ keys:
83
+ - sphinx-env-v1-{{ .BuildNum }}-{{ .Environment.CIRCLE_JOB }}
84
+ - sphinx-env-v1-{{ .Environment.CIRCLE_PREVIOUS_BUILD_NUM }}-{{ .Environment.CIRCLE_JOB }}
85
- run:
86
name: Build documentation
87
command: |
@@ -86,6 +90,10 @@ commands:
90
make html O=-T
91
rm -r build/html/_sources
88
92
working_directory: doc
93
+ - save_cache:
94
+ key: sphinx-env-v1-{{ .BuildNum }}-{{ .Environment.CIRCLE_JOB }}
95
+ paths:
96
+ - doc/build/doctrees
89
97
98
doc-bundle:
99
0 commit comments