
Co-authored-by: Richie Bendall <richiebendall@gmail.com> Co-authored-by: MrBrain295 <66077254+MrBrain295@users.noreply.github.com>
11 lines
158 B
Groovy
11 lines
158 B
Groovy
pipeline {
|
|
agent any
|
|
stages {
|
|
stage('Print Message') {
|
|
steps {
|
|
echo 'Hello World'
|
|
}
|
|
}
|
|
}
|
|
}
|