updated jenkinsfile.
All checks were successful
MoreThanText/testing/pipeline/head This commit looks good

This commit is contained in:
Jeff Baskin 2024-07-30 19:35:50 -04:00
parent 5b2bd31694
commit 389624b762

11
Jenkinsfile vendored
View File

@ -1,5 +1,10 @@
job('example') { pipeline {
steps { agent any
shell('echo Hello World!') stages {
stage('Example') {
steps {
echo 'hello world'
}
}
} }
} }