ftp.nluug/jenkinsfile

13 lines
163 B
Plaintext

pipeline {
agent any
stages {
stage('Stage 1') {
steps {
echo 'Hello world!'
}
}
}
}
groovy