From 0b6a9fdbd1548fab30860ea4f758507162e174ae Mon Sep 17 00:00:00 2001 From: subbutony11 <105411669+subbutony11@users.noreply.github.com> Date: Tue, 28 Jun 2022 17:15:43 +0530 Subject: [PATCH] Create Jenkinsfile --- Jenkinsfile | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Jenkinsfile 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' + } + } + } + } +} + +