Files
java-maven-app/Jenkinsfile-basic
2020-11-05 14:30:29 +00:00

27 lines
427 B
Plaintext

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...'
}
}
}
}