diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..6566040 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,28 @@ +pipeline { + agent none + stages { + stage('Test') { + steps { + script { + echo 'testing the application' + } + } + } + stage('Build') { + steps { + script { + echo 'building the application' + } + } + } + stage('Deploy') { + steps { + script { + echo 'deploying the application' + } + } + } + } +} + +