diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..faf2d33 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + echo 'build the application..' + } + } + stage('Test') { + steps { + echo 'test the application' + } + } + stage('Deploy') { + steps { + echo 'deploy the application' + } + } + } +}