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 fd55c0f commit a193073Copy full SHA for a193073
.circleci/config.yml
@@ -37,15 +37,21 @@ jobs:
37
- run: *apt-install # run the apt install defined above
38
- run: *pip-install # run the pip install defined above
39
40
- # - restore_cache: # Need cache for all tutorial data!
41
- # keys: sample-data-v1
+ - restore_cache:
+ keys:
42
+ - astropy-cache
43
44
- run:
45
name: Build documentation
46
command: |
47
. venv/bin/activate
48
make html
49
50
+ - save_cache:
51
+ key: astropy-cache
52
+ paths:
53
+ - ~/.astropy/cache/
54
+
55
- store_artifacts:
56
path: build/html
57
@@ -59,10 +65,6 @@ jobs:
59
65
60
66
bash .circleci/gh-pages-push.sh
61
67
62
- # - save_cache: # Specify what paths to cache
63
- # key: sample-data-v1
64
- # paths:
- # - ~/sunpy/data/sample_data
68
69
notify:
70
webhooks:
0 commit comments