Files
java-maven-app/Jenkinsfile
Nana Janashia ba11b6ecc8 revert
2020-12-04 19:00:41 +01:00

29 lines
576 B
Groovy

#!/usr/bin/env groovy
pipeline {
agent any
stages {
stage('build app') {
steps {
script {
echo "building the application..."
}
}
}
stage('build image') {
steps {
script {
echo "building the docker image..."
}
}
}
stage('deploy') {
steps {
script {
echo 'deploying docker image...'
}
}
}
}
}