Files
java-maven-app/Jenkinsfile
2020-11-11 16:46:57 +00:00

29 lines
639 B
Groovy

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