Skip to content

Commit

Permalink
rel(1.3.0): Update CHANGES / optimize docs cache on circle
Browse files Browse the repository at this point in the history
  • Loading branch information
mgxd committed May 4, 2020
1 parent dd21be9 commit c6e8386
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
21 changes: 13 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,8 @@ jobs:
name: Build only this commit
command: make -C docs SPHINXOPTS="-W" BUILDDIR="_build/no_version_html" html
- store_artifacts:
path: ./docs/_build/no_version_html
path: ./docs/_build/no_version_html/html
destination: noversion
- run:
name: Stop or generate versioned docs?
command: |
Expand All @@ -332,26 +333,30 @@ jobs:
echo "Not a tag or master branch - skipping versioned docs."
circleci step halt
fi
- run:
name: Clean-up nonversioned docs.
command: make -C docs clean
- restore_cache:
keys:
- docs-v1-{{ .Branch }}-{{ .Revision }}
- docs-v1-{{ .Branch }}-
- docs-v1-master
- docs-v1-
- docs-v2-{{ .Branch }}-{{ .Revision }}
- docs-v2-{{ .Branch }}-
- docs-v2-master
- docs-v2-
paths:
- ./docs/_build/_html
- ./docs/_build
- run:
name: Generate Versioned Docs
command: make -f ./docs/Makefile versioned CURBRANCH=${CIRCLE_TAG:-$CIRCLE_BRANCH}
- save_cache:
key: docs-v1-{{ .Branch }}-{{ .Revision }}
key: docs-v2-{{ .Branch }}-{{ .Revision }}
paths:
- ./docs/_build/_html
- ./docs/_build
- persist_to_workspace:
root: docs/_build
paths: html
- store_artifacts:
path: ./docs/_build/html
destination: versioned

deploy_docker:
machine:
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1.3.0 (May 4, 2020)
===================
Minor release enforcing BIDS-Derivatives labels on ``dseg`` file.

* FIX: WM mask selection from dseg before generating report (#100)

1.2.2 (April 16, 2020)
======================
Bug-fix release to fix phase-difference masking bug in the 1.2.x series.
Expand Down

0 comments on commit c6e8386

Please sign in to comment.