df/Jenkinsfile
2023-12-01 00:21:10 +01:00

11 lines
154 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Test Building..'
}
}
}
}