Files
java-maven-app/Jenkinsfile
Nana Janashia b39bdc130f adjustments
2020-11-22 09:25:55 +01: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..."
}
}
}
}
}