From 76e6c04d65105ed614acca1904622b0c447c4636 Mon Sep 17 00:00:00 2001 From: nagasharmada <154654784+nagasharmada@users.noreply.github.com> Date: Tue, 29 Jul 2025 11:40:53 +0530 Subject: [PATCH] Create JenkinsFile --- JenkinsFile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 JenkinsFile diff --git a/JenkinsFile b/JenkinsFile new file mode 100644 index 0000000..be4e859 --- /dev/null +++ b/JenkinsFile @@ -0,0 +1,18 @@ +pipeleine{ + agent any + stages { + stage('Build'){ + steps{ + echo 'Building..' + } + } + stage('Test'){ + steps{ + echo 'Testing..' + } + } + stage('Deploy'){ + steps{ + echo 'Deploying..' + } +}