Merge branch 'mueller/master' of https://egit.irs.uni-stuttgart.de/eive/eive_obsw into mueller/master

This commit is contained in:
Robin Müller 2021-05-31 17:06:41 +02:00
commit e532512042

10
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,10 @@
pipeline {
agent { docker { image 'alpine:latest' } }
stages {
stage('build') {
steps {
sh 'echo Hello World'
}
}
}
}