simple jenkinsfile

This commit is contained in:
Robin Müller 2021-05-28 20:18:08 +02:00
parent f287745eeb
commit 84266dddc5
No known key found for this signature in database
GPG Key ID: BE6480244DFE612C

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