14 lines
237 B
Groovy
14 lines
237 B
Groovy
def buildApp() {
|
|
echo 'building the application...'
|
|
}
|
|
|
|
def testApp() {
|
|
echo 'testing the application...'
|
|
}
|
|
|
|
def deployApp() {
|
|
echo 'deplying the application...'
|
|
echo "deploying version ${params.VERSION}"
|
|
}
|
|
|
|
return this |