pipeline { agent any stages { stage('Integration-Tests') { steps { sh 'echo "Start Integration-Tests..."' sh 'echo "TODO To be implemented!"' } } stage('Install') { steps { sh 'echo "Start Install..."' sh 'dotnet build' } } stage('deploy') { parallel { stage('deploy-RELEASE') { steps { sh 'echo "Deploy release..."' } } } } } }