diff --git a/jenkinsfile b/jenkinsfile new file mode 100644 index 0000000..3e61641 --- /dev/null +++ b/jenkinsfile @@ -0,0 +1,22 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building..' + } + } + stage('Test') { + steps { + echo 'Testing..' + } + } + stage('Deploy') { + steps { + input 'Do you want to proceed to the Deployment?' + echo 'deployed..' + } + } + } +}