-
Notifications
You must be signed in to change notification settings - Fork 81
129 lines (122 loc) · 4.25 KB
/
test_pipelines_dwi_preprocessing.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
name: DWI Preprocessing Pipelines Tests
on:
schedule:
- cron: 0 20 * * 1 # every monday at 8pm
permissions:
contents: read
env:
POETRY_VERSION: '1.6.1'
PYTHON_VERSION: '3.10'
jobs:
test-dwi-preproc-t1-MacOS:
runs-on:
- self-hosted
- macOS
timeout-minutes: 720
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- name: Run tests for dwi pre-processing using t1 pipelines
run: |
make env.conda
source ~/miniconda3/etc/profile.d/conda.sh
conda activate "${{ github.workspace }}"/env
source "$(brew --prefix)/opt/modules/init/bash"
module load clinica.all
make install
cd test
poetry run pytest --verbose \
--working_directory=/Volumes/data/working_dir_mac \
--input_data_directory=/Volumes/data_ci \
--basetemp=/Volumes/data/tmp \
--junitxml=./test-reports/non_regression_dwi_preproc_using_t1_mac.xml \
--disable-warnings \
./nonregression/pipelines/dwi/preprocessing/test_t1.py
test-dwi-preproc-phasediff-MacOS:
runs-on:
- self-hosted
- macOS
timeout-minutes: 720
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
- name: Run tests for dwi pre-processing using phasediff pipelines
run: |
make env.conda
source ~/miniconda3/etc/profile.d/conda.sh
conda activate "${{ github.workspace }}"/env
source "$(brew --prefix)/opt/modules/init/bash"
module load clinica.all
make install
cd test
poetry run pytest --verbose \
--working_directory=/Volumes/data/working_dir_mac \
--input_data_directory=/Volumes/data_ci \
--basetemp=/Volumes/data/tmp \
--junitxml=./test-reports/non_regression_dwi_preproc_using_phasediff_mac.xml \
--disable-warnings \
./nonregression/pipelines/dwi/preprocessing/test_phase_diff.py
test-dwi-preproc-t1-Linux:
runs-on:
- self-hosted
- Linux
- test-runner
timeout-minutes: 720
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: false
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Run tests for dwi pre-processing using t1 pipelines
run: |
make env.conda
source /builds/miniconda/etc/profile.d/conda.sh
conda activate "${{ github.workspace }}"/env
source /usr/local/Modules/init/profile.sh
module load clinica.all
make install
cd test
poetry run pytest --verbose \
--working_directory=/mnt/data/ci/working_dir_linux \
--input_data_directory=/mnt/data_ci \
--basetemp=/mnt/data/ci/tmp \
--junitxml=./test-reports/non_regression_dwi_preproc_using_t1_linux.xml \
--disable-warnings \
./nonregression/pipelines/dwi/preprocessing/test_t1.py
test-dwi-preproc-phasediff-Linux:
runs-on:
- self-hosted
- Linux
- test-runner
timeout-minutes: 720
steps:
- uses: actions/checkout@v4
- uses: snok/install-poetry@v1
with:
version: ${{ env.POETRY_VERSION }}
virtualenvs-create: false
- uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
cache: poetry
- name: Run tests for dwi pre-processing using phasediff pipelines
run: |
make env.conda
source /builds/miniconda/etc/profile.d/conda.sh
conda activate "${{ github.workspace }}"/env
source /usr/local/Modules/init/profile.sh
module load clinica.all
make install
cd test
poetry run pytest --verbose \
--working_directory=/mnt/data/ci/working_dir_linux \
--input_data_directory=/mnt/data_ci \
--basetemp=/mnt/data/ci/tmp \
--junitxml=./test-reports/non_regression_dwi_preproc_using_phasediff_linux.xml \
--disable-warnings \
./nonregression/pipelines/dwi/preprocessing/test_phase_diff.py