Compare commits

...

3 Commits

Author SHA1 Message Date
Niclas Thobaben 3dd5823761 add Readme 2020-11-25 13:31:38 +01:00
Niclas Thobaben 443be486ae BLD jenkinsfile
ln.type/pipeline/head There was a failure building this commit Details
2020-11-18 17:39:39 +01:00
Niclas Thobaben 4059809c15 BLD added Jenkinsfile 2020-11-18 17:37:06 +01:00
2 changed files with 29 additions and 0 deletions

28
Jenkinsfile vendored 100644
View File

@ -0,0 +1,28 @@
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..."'
}
}
}
}
}
}

1
README.md 100644
View File

@ -0,0 +1 @@
# ln.types Build Test Fork