Skip to content

Commit

Permalink
Merge pull request #317 from schorschinho/develop
Browse files Browse the repository at this point in the history
Add yaml to master [ci skip]
  • Loading branch information
HJZollner authored Jul 21, 2021
2 parents 264684a + 5850c72 commit 502f9a0
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions ci/azure-pipelines-master-pull.yml
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'

0 comments on commit 502f9a0

Please sign in to comment.