Files
java-maven-app/Jenkinsfile
2020-11-11 18:39:09 +00:00

28 lines
597 B
Groovy

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