From 746a7e095627d0c74fc89153cf3787505357d488 Mon Sep 17 00:00:00 2001 From: namita-git <54328810+namita-git@users.noreply.github.com> Date: Tue, 27 Jul 2021 17:31:33 +0530 Subject: [PATCH] Delete Jenkinsfile --- Jenkinsfile | 55 ----------------------------------------------------- 1 file changed, 55 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 11e754464..000000000 --- a/Jenkinsfile +++ /dev/null @@ -1,55 +0,0 @@ -#!/usr/bin/env groovy -def gv -pipeline { - agent none - - tools { - // Install the Maven version configured as "M3" and add it to the path. - jdk 'myjava' - maven 'mymaven' - } - - stages { - stage('Compile') { - agent any - steps { - script{ - git 'https://github.com/devops-trainer/DevOpsClassCodes.git' - gv = load "script.groovy" - gv.compile() - } - - } - } - stage('UnitTest') { - - agent any - steps { - script{ - gv = load "script.groovy" - gv.UnitTest() - } - - } - - } - stage('Package') { - agent any - steps { - script{ - gv = load "script.groovy" - gv.package() - } - - } - - } - stage('Build docker image'){ - agent any - steps{ - script{ - - } -} - } - }