From fbabf102d6b113af2810653afc99c33afa9fe942 Mon Sep 17 00:00:00 2001 From: salmanlari <100842664+salmanlari@users.noreply.github.com> Date: Wed, 1 Mar 2023 10:58:25 +0530 Subject: [PATCH] Create Jenkinsfile --- Jenkinsfile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..36b6218 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,33 @@ +pipeline { + + agent any + + stages { + + stage('Checkout') { + steps { + sh 'echo "Checkout code"' + } + } + + stage('Compile') { + steps { + sh 'echo "compile application..."' + } + } + + stage('Test') { + steps { + sh 'echo "Test application..."' + } + } + stage("Package application") { + steps { + sh 'echo "package application..."' + } + + } + + } + + }