From e2c66139ef70dec09b9ee56dd6ce0fc1b9cfb0a2 Mon Sep 17 00:00:00 2001 From: Aravindo Wingeier Date: Fri, 28 Dec 2018 21:48:33 -0300 Subject: [PATCH] Delete Jenkinsfile --- Jenkinsfile | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 9ad70e3..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,31 +0,0 @@ -#!/usr/bin/groovy - -@Library('github.com/fabric8io/fabric8-pipeline-library@master') -def canaryVersion = "1.0.${env.BUILD_NUMBER}" -def utils = new io.fabric8.Utils() - -mavenNode { - checkout scm - if (utils.isCI()) { - - mavenCI { - integrationTestCmd = - "mvn org.apache.maven.plugins:maven-failsafe-plugin:integration-test \ - org.apache.maven.plugins:maven-failsafe-plugin:verify \ - -Dnamespace.use.current=false -Dnamespace.use.existing=${utils.testNamespace()} \ - -Dit.test=*IT -DfailIfNoTests=false -DenableImageStreamDetection=true \ - -P openshift-it" - } - - } else if (utils.isCD()) { - echo 'NOTE: running pipelines for the first time will take longer as build and base docker images are pulled onto the node' - container(name: 'maven', shell:'/bin/bash') { - stage('Build Image') { - mavenCanaryRelease { - version = canaryVersion - } - } - } - } -} -