File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,6 @@ commands:
2424 source ~/simple/bin/activate
2525 pip install cpac
2626 deactivate
27- - run :
28- name : 🖇️ Linking references
29- command : |
30- CPAC_DIRECTORY=$(python -c "import os, CPAC; print(os.path.abspath(os.path.dirname(CPAC.__file__)))")
31- ln ${CPAC_DIRECTORY}/resources/configs/1.7-1.8-nesting-mappings.yml docs/_sources/references/1.7-1.8-nesting-mappings.yml || true
32- ln ${CPAC_DIRECTORY}/resources/configs/1.7-1.8-deprecations.yml docs/_sources/references/1.7-1.8-deprecations.yml || true
33- curl -o docs/_sources/references/default_pipeline.yml -L https://raw.githubusercontent.com/${CIRCLE_PROJECT_USERNAME}/C-PAC/<< parameters.version >>/dev/docker_data/default_pipeline.yml || true
3427
3528 run-cpac-commands :
3629 steps :
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3+ # link references
4+ CPAC_DIRECTORY=$( python -c " import os, CPAC; print(os.path.abspath(os.path.dirname(CPAC.__file__)))" )
5+ ln ${CPAC_DIRECTORY} /resources/configs/1.7-1.8-nesting-mappings.yml docs/_sources/references/1.7-1.8-nesting-mappings.yml || true
6+ ln ${CPAC_DIRECTORY} /resources/configs/1.7-1.8-deprecations.yml docs/_sources/references/1.7-1.8-deprecations.yml || true
7+ ln ${CPAC_DIRECTORY} /resources/configs/default_pipeline.yml docs/_sources/references/default_pipeline.yml || true
8+
9+ # build docs
310sphinx-build -b html docs/_sources docs/$1
You can’t perform that action at this time.
0 commit comments