Files
java-maven-app/Jenkinsfile-basic
Nana Janashia 2fda2eb1dc Add new file
2021-01-01 17:13:15 +00:00

29 lines
571 B
Groovy

#!/usr/bin/env 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..."
}
}
}
}
}