-
Notifications
You must be signed in to change notification settings - Fork 4
84 lines (68 loc) · 2.51 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
84
---
name: test latest image
on:
schedule:
- cron: 0 0 1 * *
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash -l {0}
jobs:
test_latest_image:
strategy:
matrix:
dataset: ['1', '2']
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y tree
- name: Clone repo
uses: actions/checkout@v3
- name: pull docker image
run: docker pull bids/afni_proc:latest
- name: print version
run: |
docker run -t --rm --read-only \
-v /tmp:/tmp \
-v /var/tmp:/var/tmp \
bids/afni_proc:latest -v
docker run -t --rm --read-only \
-v /tmp:/tmp \
-v /var/tmp:/var/tmp \
bids/afni_proc:latest -h
- 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_test${{ matrix.dataset }}
- name: prepare output dir
run: mkdir -p ${HOME}/outputs${{ matrix.dataset }}
- name: participant level tests
run: |
docker run -t --rm --read-only \
-v ${HOME}/data/ds114_test${{ matrix.dataset }}:/bids_dataset \
-v ${HOME}/outputs${{ matrix.dataset }}:/outputs \
-v /tmp:/tmp \
-v /var/tmp:/var/tmp \
bids/afni_proc \
/bids_dataset /outputs participant \
--participant_label 01 \
--afni_proc \
'-subj_id {subj_id} -script proc.bids -scr_overwrite -out_dir {out_dir} -blocks tshift volreg blur scale -copy_anat {anat_path} -tcat_remove_first_trs 0 -dsets {epi_paths} -volreg_align_to MIN_OUTLIER -blur_size 4.0 -bash'
docker run -t --rm --read-only \
-v ${HOME}/data/ds114_test${{ matrix.dataset }}:/bids_dataset \
-v ${HOME}/outputs${{ matrix.dataset }}:/outputs \
-v /tmp:/tmp \
-v /var/tmp:/var/tmp \
bids/afni_proc \
/bids_dataset /outputs participant \
--participant_label 02 \
--afni_proc \
'-subj_id {subj_id} -script proc.bids -scr_overwrite -out_dir {out_dir} -blocks tshift volreg blur scale -copy_anat {anat_path} -tcat_remove_first_trs 0 -dsets {epi_paths} -volreg_align_to MIN_OUTLIER -blur_size 4.0 -bash'
- name: check output
run: tree ${HOME}/outputs${{ matrix.dataset }}