-
Notifications
You must be signed in to change notification settings - Fork 8
83 lines (68 loc) · 1.99 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
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/ndmg:latest
- name: print version
run: |
docker run -t --rm --read-only \
--tmpfs /tmp \
--tmpfs /var/tmp \
bids/ndmg:latest --help
- 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 ds114_test1
- name: prepare output dir
run: |
mkdir -p ${HOME}/outputs
- name: participant 01
run: |
docker run -t --rm --read-only \
-v ${HOME}/data/ds114_test1:/bids_dataset \
-v ${HOME}/outputs:/outputs \
--tmpfs /tmp \
--tmpfs /var/tmp \
bids/ndmg:latest \
/bids_dataset /outputs session \
--participant_label 01
- name: check output
run: tree ${HOME}/outputs
- name: participant 02
run: |
docker run -t --rm --read-only \
-v ${HOME}/data/ds114_test1:/bids_dataset \
-v ${HOME}/outputs:/outputs \
--tmpfs /tmp \
--tmpfs /var/tmp \
bids/ndmg:latest \
/bids_dataset /outputs session \
--participant_label 02
- name: check output
run: tree ${HOME}/outputs
- name: group
run: |
docker run -t --rm --read-only \
-v ${HOME}/data/ds114_test1:/bids_dataset \
-v ${HOME}/outputs:/outputs \
--tmpfs /tmp \
--tmpfs /var/tmp \
bids/ndmg:latest \
/bids_dataset /outputs group \
--participant_label 01 02