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{ - - } -} - } - }