ln.type/Jenkinsfile

29 lines
474 B
Groovy

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..."'
}
}
}
}
}
}