diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..d19fcc54 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,30 @@ +pipeline +{ + agent any + + stages + { + + stage('Build') + { + steps + { + echo 'Build App' + } + } + stage('Test') + { + steps + { + echo 'Test App' + } + } + stage('Deploy') + { + steps + { + echo 'Deploy App' + } + } + } +}