-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split dwi tests between preproc and proc
- Loading branch information
1 parent
4439121
commit 7cad54c
Showing
3 changed files
with
50 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: DWI Preprocessing Pipelines Tests | ||
|
||
on: | ||
push: | ||
branches: [dev] | ||
pull_request: | ||
branches: [dev] | ||
|
||
permissions: | ||
contents: read | ||
|
||
concurrency: | ||
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test-pipelines-dwi-preprocessing-MacOS: | ||
runs-on: | ||
- self-hosted | ||
- macOS | ||
timeout-minutes: 720 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: snok/install-poetry@v1 | ||
- name: Run tests for dwi preprocessing pipelines | ||
run: ./scripts/run_nonregression.sh | ||
env: | ||
TEST: dwi/preprocessing | ||
MODALITY: dwi_preprocessing | ||
WORKSPACE: ${{ github.workspace }} | ||
|
||
test-pipelines-dwi-preprocessing-Linux: | ||
runs-on: | ||
- self-hosted | ||
- Linux | ||
timeout-minutes: 720 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: snok/install-poetry@v1 | ||
- name: Run tests for dwi preprocessing pipelines | ||
run: ./scripts/run_nonregression.sh | ||
env: | ||
TEST: dwi/preprocessing | ||
MODALITY: dwi_preprocessing | ||
WORKSPACE: ${{ github.workspace }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters