Unverified Commit dbb76791 authored by Nicolas Hug's avatar Nicolas Hug Committed by GitHub
Browse files

Fix sphinx-gallery backlinks (#4565)

parent 834c7eff
...@@ -916,15 +916,6 @@ jobs: ...@@ -916,15 +916,6 @@ jobs:
- run: - run:
name: Install torchvision name: Install torchvision
command: .circleci/unittest/linux/scripts/install.sh command: .circleci/unittest/linux/scripts/install.sh
- run:
name: Generate cache key
# This will refresh cache on Sundays, nightly build should generate new cache.
command: echo "$(date +"%Y-%U")" > .circleci-weekly
- restore_cache:
keys:
- sphinx-gallery-{{ checksum "./docs/source/conf.py" }}-{{ checksum ".circleci-weekly" }}
- run: - run:
name: Build docs name: Build docs
command: | command: |
...@@ -937,12 +928,6 @@ jobs: ...@@ -937,12 +928,6 @@ jobs:
pip install -r requirements.txt pip install -r requirements.txt
make html make html
popd popd
- save_cache:
key: sphinx-gallery-{{ checksum "./docs/source/conf.py" }}-{{ checksum ".circleci-weekly" }}
paths:
- ./docs/source/auto_examples
- persist_to_workspace: - persist_to_workspace:
root: ./ root: ./
paths: paths:
......
...@@ -916,15 +916,6 @@ jobs: ...@@ -916,15 +916,6 @@ jobs:
- run: - run:
name: Install torchvision name: Install torchvision
command: .circleci/unittest/linux/scripts/install.sh command: .circleci/unittest/linux/scripts/install.sh
- run:
name: Generate cache key
# This will refresh cache on Sundays, nightly build should generate new cache.
command: echo "$(date +"%Y-%U")" > .circleci-weekly
- restore_cache:
{% raw %}
keys:
- sphinx-gallery-{{ checksum "./docs/source/conf.py" }}-{{ checksum ".circleci-weekly" }}
{% endraw %}
- run: - run:
name: Build docs name: Build docs
command: | command: |
...@@ -937,12 +928,6 @@ jobs: ...@@ -937,12 +928,6 @@ jobs:
pip install -r requirements.txt pip install -r requirements.txt
make html make html
popd popd
- save_cache:
{% raw %}
key: sphinx-gallery-{{ checksum "./docs/source/conf.py" }}-{{ checksum ".circleci-weekly" }}
{% endraw %}
paths:
- ./docs/source/auto_examples
- persist_to_workspace: - persist_to_workspace:
root: ./ root: ./
paths: paths:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment