Skip to content

Commit 412fb3e

Browse files
committed
added parallelization
1 parent 95752ca commit 412fb3e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

circle.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,17 @@ test:
2121
override:
2222
- set -o pipefail && cd doc && make html 2>&1 | tee ~/log.txt
2323
- cat ~/log.txt && if grep -q "ERROR" ~/log.txt; then false; else true; fi
24-
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_fsl_feeds Linear l1pipeline:
24+
- if [ "$CIRCLE_NODE_INDEX" = "0" ]; then . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_fsl_feeds Linear l1pipeline; fi:
2525
pwd: ../examples
26-
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_spm_dartel Linear level1 l2pipeline:
26+
- if [ "$CIRCLE_NODE_INDEX" = "1" ]; then . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_spm_dartel Linear level1 l2pipeline; fi:
2727
pwd: ../examples
2828
environment:
2929
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"
3030
FORCE_SPMMCR: 1
3131
timeout: 1600
32-
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_fsl_reuse Linear level1_workflow:
32+
- if [ "$CIRCLE_NODE_INDEX" = "2" ]; then . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_fsl_reuse Linear level1_workflow; fi:
3333
pwd: ../examples
34-
- . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_spm_nested Linear level1 l2pipeline:
34+
- if [ "$CIRCLE_NODE_INDEX" = "3" ]; then . /usr/share/fsl/5.0/etc/fslconf/fsl.sh && python ~/nipype/tools/run_examples.py fmri_spm_nested Linear level1 l2pipeline; fi:
3535
pwd: ../examples
3636
environment:
3737
SPMMCRCMD: "$HOME/spm12/run_spm12.sh $HOME/mcr/v85/ script"

0 commit comments

Comments
 (0)