From 234f18092ec359883577dd07bd59e0ca3fb50287 Mon Sep 17 00:00:00 2001 From: Faiz Reza Date: Fri, 3 Oct 2025 17:48:21 +0000 Subject: [PATCH] Delete JENKINSFILES FORM PROD --- Jenkinsfile | 49 ------------------------------------------------- 1 file changed, 49 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index fb20671..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,49 +0,0 @@ -pipeline { - - agent any - - stages { - - stage('Checkout') { - steps { - sh 'echo "Checkout code"' - } - } - - stage('Compile') { - steps { - sh 'echo "compile application..."' - } - } - - stage('Review') { - steps { - sh 'echo "Review application..."' - } - } - - stage('Test') { - steps { - sh 'echo "Test application..."' - } - } - stage("Package application") { - steps { - sh 'echo "package application..."' - } - - } - - - - stage("Deploy application") { - - steps { - sh 'echo "Deployment application..."' - } - - } - - } - - }