Release v1.2.0 #47

Merged
meierj merged 229 commits from develop into master 2021-06-21 17:58:40 +02:00
Showing only changes of commit e532512042 - Show all commits

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