Add Jenkinsfile

This commit is contained in:
Nana Janashia
2020-11-05 14:04:42 +00:00
parent ed870a0c6b
commit 48aa2427b3

26
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,26 @@
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...'
}
}
}
}