Skip to content

Commit f180fc9

Browse files
committed
Merge branch 'master' of github.com:miykael/nipype_tutorial
2 parents 5120255 + 22c9ef9 commit f180fc9

File tree

4 files changed

+13
-10
lines changed

4 files changed

+13
-10
lines changed

Diff for: .circleci/config.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
name: docker build 1
1717
no_output_timeout: 60m
1818
command: |
19-
docker build -t miykael/nipype_tutorial:$CIRCLE_BRANCH .
19+
docker build -t miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') .
2020
- run:
2121
name: run tests 1
2222
no_output_timeout: 120m
2323
command: |
24-
docker run -it --rm miykael/nipype_tutorial:$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
2525
test_2:
2626
docker:
2727
- image: docker:18.05.0-ce-git
@@ -33,12 +33,12 @@ jobs:
3333
name: docker build 2
3434
no_output_timeout: 60m
3535
command: |
36-
docker build -t miykael/nipype_tutorial:$CIRCLE_BRANCH .
36+
docker build -t miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') .
3737
- run:
3838
name: run tests 2
3939
no_output_timeout: 120m
4040
command: |
41-
docker run -it --rm miykael/nipype_tutorial:$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
4242
test_3:
4343
docker:
4444
- image: docker:18.05.0-ce-git
@@ -50,12 +50,12 @@ jobs:
5050
name: docker build 3
5151
no_output_timeout: 60m
5252
command: |
53-
docker build -t miykael/nipype_tutorial:$CIRCLE_BRANCH .
53+
docker build -t miykael/nipype_tutorial:$(echo $CIRCLE_BRANCH | sed 's|/|_|g') .
5454
- run:
5555
name: run tests 3
5656
no_output_timeout: 120m
5757
command: |
58-
docker run -it --rm miykael/nipype_tutorial:$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
5959
6060
workflows:
6161
version: 2

Diff for: Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Generated by Neurodocker version 0.4.2-dev
2-
# Timestamp: 2018-10-10 04:25:17 UTC
1+
# Generated by Neurodocker version 0.4.1-22-g7c44e01
2+
# Timestamp: 2018-10-10 14:43:05 UTC
33
#
44
# Thank you for using Neurodocker. If you discover any issues
55
# or ways to improve this software, please submit an issue or

Diff for: Singularity

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Generated by Neurodocker version 0.4.2-dev
2-
# Timestamp: 2018-10-10 04:25:18 UTC
1+
# Generated by Neurodocker version 0.4.1-22-g7c44e01
2+
# Timestamp: 2018-10-10 14:43:07 UTC
33
#
44
# Thank you for using Neurodocker. If you discover any issues
55
# or ways to improve this software, please submit an issue or

Diff for: index.ipynb

+3
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,9 @@
176176
],
177177
"source": [
178178
"%%html\n",
179+
"\n",
180+
" <!–– TUTORIAL USERS: PLEASE EXECUTE THIS CELL ––>\n",
181+
"\n",
179182
"<style>.container { width:75% !important; }</style>\n",
180183
"<link rel='stylesheet' type='text/css' href='static/css/mobile.css'>\n",
181184
"<link rel='stylesheet' type='text/css' href='static/css/homepage.css'>\n",

0 commit comments

Comments
 (0)