Skip to content

Commit 3f80131

Browse files
committed
order matters, enable volume mounting to reuse workflow results
1 parent 8ff6d28 commit 3f80131

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

circle.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ machine:
44

55
dependencies:
66
cache_directories:
7-
- "~/scratch"
87
- "~/docker"
98

109
pre:
1110
- pip install coverage
11+
- mkdir -p "~/scratch/nose"
1212
override:
1313
- if [[ -e ~/docker/image.tar ]]; then docker load -i ~/docker/image.tar; fi
1414
- docker info
@@ -18,15 +18,13 @@ dependencies:
1818

1919
test:
2020
override:
21-
- mkdir -p ${CIRCLE_TEST_REPORTS}/nose
22-
# Start with shorter tests first, fail early.
23-
- docker run -it nipype/testbench fmri_fsl_reuse Linear level1_workflow
24-
- docker run -it nipype/testbench fmri_spm_nested Linear level1 l2pipeline
25-
- docker run -it nipype/testbench fmri_fsl_feeds Linear l1pipeline
26-
- docker run -it nipype/testbench test_spm Linear workflow3d workflow4d :
21+
- docker run -i -v /etc/localtime:/etc/localtime:ro -v ~/scratch:/scratch -w /scratch nipype/testbench test_spm Linear workflow3d workflow4d :
2722
timeout: 1600
28-
- docker run -it nipype/testbench fmri_spm_dartel Linear level1 l2pipeline :
23+
- docker run -i -v /etc/localtime:/etc/localtime:ro -v ~/scratch:/scratch -w /scratch nipype/testbench fmri_fsl_feeds Linear l1pipeline
24+
- docker run -i -v /etc/localtime:/etc/localtime:ro -v ~/scratch:/scratch -w /scratch nipype/testbench fmri_spm_dartel Linear level1 l2pipeline :
2925
timeout: 1600
26+
- docker run -i -v /etc/localtime:/etc/localtime:ro -v ~/scratch:/scratch -w /scratch nipype/testbench fmri_fsl_reuse Linear level1_workflow
27+
- docker run -i -v /etc/localtime:/etc/localtime:ro -v ~/scratch:/scratch -w /scratch nipype/testbench fmri_spm_nested Linear level1 l2pipeline
3028

3129
# general:
3230
# artifacts:

0 commit comments

Comments
 (0)