Files
java-maven-app/Jenkinsfile
2021-03-21 13:40:15 +00:00

29 lines
570 B
Groovy

#!/usr/bin/env groovy
pipeline {
agent any
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..."
}
}
}
}
}