Files
jenkins-test-repo/Jenkinsfile
Pavel Kachalouski 77833e1619 SQL
2023-01-22 14:00:23 +01:00

14 lines
215 B
Groovy

pipeline {
agent any
options {
skipStagesAfterUnstable()
}
stages {
stage('Build') {
steps {
getDatabaseConnection 123
}
}
}
}