Nosedive/Jenkinsfile
2024-10-04 20:20:48 +03:00

10 lines
147 B
Groovy

pipeline {
agent any
stages {
stage('Build Project') {
steps {
build "Nosedive"
}
}
}
}