Files
java-maven-app/Jenkinsfile
2020-11-12 09:42:08 +00:00

27 lines
554 B
Groovy

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