-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #317 from schorschinho/develop
Add yaml to master [ci skip]
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Pull request CI pipeline for Osprey | ||
# Triggers for each pull request into the develop branch | ||
# Starts with a full PRESS job | ||
# If the first stage is successful a Full MEGA job is triggered | ||
|
||
trigger: | ||
branches: | ||
include: | ||
- master | ||
exclude: | ||
- develop | ||
|
||
|
||
pool: 'Default' | ||
|
||
stages: | ||
- stage: Stage_1 | ||
jobs: | ||
- job: PRESS | ||
steps: | ||
- script: matlab -nodisplay -wait -nosplash -batch "addpath(genpath('C:\CI-agent\_work\1\s')); FullPRESS; quit" | ||
displayName: 'Single Subject PRESS without Segmentation & GUI' | ||
|
||
- stage: Stage_2 | ||
dependsOn: Stage_1 | ||
jobs: | ||
- job: MEGA | ||
steps: | ||
- script: matlab -nodisplay -wait -nosplash -batch "addpath(genpath('C:\CI-agent\_work\1\s')); MEGAPRESS; quit" | ||
displayName: 'Single Subject PRESS add Segmentation & GUI' |