-
Notifications
You must be signed in to change notification settings - Fork 30
67 lines (55 loc) · 1.57 KB
/
test_latest.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---
name: test latest image
on:
push:
branches: ['*']
schedule:
- cron: 0 0 1 * *
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test_dataset_without_session:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y tree
- name: pull docker image
run: docker pull bids/hcppipelines
- name: print version
run: |
docker run -t --rm --read-only \
--tmpfs /tmp \
--tmpfs /var/tmp \
bids/hcppipelines --help
docker run -t --rm --read-only \
--tmpfs /tmp \
--tmpfs /var/tmp \
bids/hcppipelines --version
- name: get data
run: |
wget https://raw.githubusercontent.com/bids-apps/maintenance-tools/main/utils/get_data_from_osf.sh
bash get_data_from_osf.sh hcp_example_bids_v3
- name: prepare output dir
run: |
mkdir -p ${HOME}/outputs
- name: participant 01
run: |
docker run -t --rm --read-only \
-v ${HOME}/data/hcp_example_bids_v3:/bids_dataset \
-v ${HOME}/outputs:/outputs \
--tmpfs /tmp \
--tmpfs /var/tmp \
bids/hcppipelines \
/bids_dataset \
/outputs \
participant \
--participant_label 100307 \
--stages PreFreeSurfer \
--license_key="*CxjskRdd7" \
--n_cpus 2
- name: check output
run: tree ${HOME}/outputs