BLD added Jenkinsfile

master
Niclas Thobaben 2020-11-18 17:18:14 +01:00
parent 7d9e542ffb
commit 4059809c15
1 changed files with 34 additions and 0 deletions

34
Jenkinsfile vendored 100644
View File

@ -0,0 +1,34 @@
pipeline {
agent any
stages {
stage('Unit-Tests') {
steps {
sh 'echo "Start Unit-Tests..."'
}
}
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..."'
}
}
}
}
}
}