GabrielePuliti a05b31a34a
Add Jenkinsfile (#1151)
Co-authored-by: Richie Bendall <richiebendall@gmail.com>
Co-authored-by: MrBrain295 <66077254+MrBrain295@users.noreply.github.com>
2021-10-10 13:52:02 +13:00

11 lines
158 B
Groovy

pipeline {
agent any
stages {
stage('Print Message') {
steps {
echo 'Hello World'
}
}
}
}