Files
java-maven-app/Jenkinsfile
2020-11-06 12:26:25 +00:00

27 lines
555 B
Groovy

pipeline {
agent none
stages {
stage('build') {
steps {
script {
echo "Building the application..."
}
}
}
stage('test') {
steps {
script {
echo "Testing the application..."
}
}
}
stage('deploy') {
steps {
script {
echo "Deploying the application..."
}
}
}
}
}