Files
java-maven-app/Jenkinsfile
2020-11-06 10:39:13 +00:00

35 lines
651 B
Groovy

def gv
pipeline {
agent any
stages {
stage("init") {
steps {
script {
gv = load "script.groovy"
}
}
}
stage("build") {
steps {
script {
gv.buildApp()
}
}
}
stage("test") {
steps {
script {
gv.testApp()
}
}
}
stage("deploy") {
steps {
script {
gv.deployApp()
}
}
}
}
}