@@ -97,19 +97,19 @@ jobs:
97
97
steps :
98
98
- restore_cache :
99
99
keys :
100
- - env-v1 -{{ .Branch }}-
101
- - env-v1 -master-
102
- - env-v1 -
100
+ - env-v2 -{{ .Branch }}-
101
+ - env-v2 -master-
102
+ - env-v2 -
103
103
- run :
104
104
name : Setup git-annex, DataLad & TemplateFlow
105
105
command : |
106
- conda install -y -c anaconda -c conda-forge git-annex datalad wget
107
- python -m pip install --no-cache-dir -U datalad-osf
106
+ apk update && apk add --no-cache coreutils
107
+ conda install -y -c conda-forge python=*=*cpython datalad git wget
108
+ python -m pip install --no-cache-dir -U datalad-osf templateflow
108
109
git config --global user.name 'NiPreps Bot'
109
110
git config --global user.email '[email protected] '
110
- python -m pip install --no-cache-dir -U templateflow
111
111
- save_cache :
112
- key : env-v1 -{{ .Branch }}-{{ .BuildNum }}
112
+ key : env-v2 -{{ .Branch }}-{{ .BuildNum }}
113
113
paths :
114
114
- /opt/conda
115
115
@@ -128,6 +128,15 @@ jobs:
128
128
datalad update -r --merge -d ds000003/
129
129
datalad get -J 2 -r -d ds000003/ ds000003/*
130
130
131
+ - run :
132
+ name : Get test data from ds000030
133
+ command : |
134
+ if [[ ! -d ds000030 ]]; then
135
+ datalad install -r https://github.com/nipreps-data/ds000030.git
136
+ fi
137
+ datalad update -r --merge -d ds000030/
138
+ datalad get -J 2 -r -d ds000030/ ds000030/sub-10228/func/*
139
+
131
140
- run :
132
141
name : Get BIDS test data stub
133
142
command : |
@@ -143,6 +152,7 @@ jobs:
143
152
key : data-v3-{{ .Branch }}-{{ epoch }}
144
153
paths :
145
154
- /tmp/data/ds000003
155
+ - /tmp/data/ds000030
146
156
- /tmp/data/BIDS-examples-1-enh-ds054
147
157
- run :
148
158
name : Store FreeSurfer license file
0 commit comments