File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -16,12 +16,12 @@ jobs:
16
16
name : docker build 1
17
17
no_output_timeout : 60m
18
18
command : |
19
- docker build -t miykael/nipype_tutorial:$(sed 's|/|_|g' <<< $CIRCLE_BRANCH ) .
19
+ docker build -t miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') .
20
20
- run :
21
21
name : run tests 1
22
22
no_output_timeout : 120m
23
23
command : |
24
- docker run -it --rm miykael/nipype_tutorial:$(sed 's|/|_|g' <<< $CIRCLE_BRANCH ) python /home/neuro/nipype_tutorial/test_notebooks.py 1
24
+ docker run -it --rm miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') python /home/neuro/nipype_tutorial/test_notebooks.py 1
25
25
test_2 :
26
26
docker :
27
27
- image : docker:18.05.0-ce-git
@@ -33,12 +33,12 @@ jobs:
33
33
name : docker build 2
34
34
no_output_timeout : 60m
35
35
command : |
36
- docker build -t miykael/nipype_tutorial:$(sed 's|/|_|g' <<< $CIRCLE_BRANCH ) .
36
+ docker build -t miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') .
37
37
- run :
38
38
name : run tests 2
39
39
no_output_timeout : 120m
40
40
command : |
41
- docker run -it --rm miykael/nipype_tutorial:$(sed 's|/|_|g' <<< $CIRCLE_BRANCH ) python /home/neuro/nipype_tutorial/test_notebooks.py 2
41
+ docker run -it --rm miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') python /home/neuro/nipype_tutorial/test_notebooks.py 2
42
42
test_3 :
43
43
docker :
44
44
- image : docker:18.05.0-ce-git
@@ -50,12 +50,12 @@ jobs:
50
50
name : docker build 3
51
51
no_output_timeout : 60m
52
52
command : |
53
- docker build -t miykael/nipype_tutorial:$(sed 's|/|_|g' <<< $CIRCLE_BRANCH ) .
53
+ docker build -t miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') .
54
54
- run :
55
55
name : run tests 3
56
56
no_output_timeout : 120m
57
57
command : |
58
- docker run -it --rm miykael/nipype_tutorial:$(sed 's|/|_|g' <<< $CIRCLE_BRANCH ) python /home/neuro/nipype_tutorial/test_notebooks.py 3
58
+ docker run -it --rm miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') python /home/neuro/nipype_tutorial/test_notebooks.py 3
59
59
60
60
workflows :
61
61
version : 2
You can’t perform that action at this time.
0 commit comments