From 93f3ad37bddce60e57a95a6f3b8c10984c4954eb Mon Sep 17 00:00:00 2001 From: Dominik Chilla <43314918+chillout2k@users.noreply.github.com> Date: Mon, 15 Jul 2019 21:50:51 +0200 Subject: [PATCH] Delete Jenkinsfile --- Jenkinsfile | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 943e892..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,30 +0,0 @@ -node { - def app - - stage('Clone repository') { - sh '/usr/bin/env' - /* Let's make sure we have the repository cloned to our workspace */ - checkout scm - } - - stage('Build image') { - sh '/usr/bin/env' - /* This builds the actual image; synonymous to - * docker build on the command line */ - app = docker.build("jenkins/sos-milter") - } - - stage('Test image') { - /* Ideally, we would run a test framework against our image. - * For this example, we're using a Volkswagen-type approach ;-) */ - app.inside { - sh 'echo "Tests passed"' - } - } - - stage('Push image') { - docker.withRegistry('https://dockreg-fra.zwackl.de') { - app.push() - } - } -}