simple jenkinsfile

This commit is contained in:
Robin Müller 2021-05-28 20:18:08 +02:00 committed by Robin Mueller
parent 9f10f0a923
commit b184799688
1 changed files with 10 additions and 0 deletions

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