Update Jenkinsfile

This commit is contained in:
Nana Janashia
2020-11-05 14:30:29 +00:00
parent 48aa2427b3
commit 8fb1d04fa8

26
Jenkinsfile vendored
View File

@@ -1,26 +0,0 @@
pipeline {
agent any
stages {
stage("build") {
steps {
echo 'building the application...'
}
}
stage("test") {
steps {
echo 'testing the application...'
}
}
stage("deploy") {
steps {
echo 'deploying the application...'
}
}
}
}