diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..aae046b --- /dev/null +++ b/Jenkinsfile @@ -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...' + } + } + } +}