Files
java-maven-app/Jenkinsfile
2020-11-05 14:31:01 +00:00

27 lines
427 B
Groovy

pipeline {
agent any
stages {
stage("build") {
steps {
echo 'building the application...'
}
}
stage("test") {
steps {
echo 'testing the application...'
}
}
stage("deploy") {
steps {
echo 'deploying the application...'
}
}
}
}