From 448ed75c48e3e5a01cde2c60d382b5e268685667 Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Thu, 19 Oct 2017 11:22:05 -0700 Subject: [PATCH] Removed vestigial targets from Jenkinsfile --- Jenkinsfile | 84 ----------------------------------------------------- 1 file changed, 84 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9b8689e..e7a8fa6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -28,48 +28,6 @@ parallel 'centos7': { throw err } - - try { - checkout scm - sh 'git submodule update --init' - stage('linux static lib, no stack, ipv4') { - sh 'make clean; make -j4 static_lib NO_STACK=1 LIBZT_IPV4=1; make tests' - } - } - catch (err) { - currentBuild.result = "FAILURE" - slackSend color: '#ff0000', message: "${env.JOB_NAME} broken on linux (<${env.BUILD_URL}|Open>)" - throw err - } - - - try { - checkout scm - sh 'git submodule update --init' - stage('linux static lib, no stack, ipv6') { - sh 'make clean; make -j4 static_lib NO_STACK=1 LIBZT_IPV6=1; make tests' - } - } - catch (err) { - currentBuild.result = "FAILURE" - slackSend color: '#ff0000', message: "${env.JOB_NAME} broken on linux (<${env.BUILD_URL}|Open>)" - throw err - } - - - try { - checkout scm - sh 'git submodule update --init' - stage('linux static lib, no stack, ipv4, ipv6') { - sh 'make clean; make -j4 static_lib NO_STACK=1 LIBZT_IPV4=1 LIBZT_IPV6=1; make tests' - } - } - catch (err) { - currentBuild.result = "FAILURE" - slackSend color: '#ff0000', message: "${env.JOB_NAME} broken on linux (<${env.BUILD_URL}|Open>)" - throw err - } - /* // picoTCP @@ -182,48 +140,6 @@ parallel 'centos7': { throw err } - - try { - checkout scm - sh 'git submodule update --init' - stage('macOS static lib, no stack, ipv4') { - sh 'make clean; make -j4 static_lib NO_STACK=1 LIBZT_IPV4=1; make tests' - } - } - catch (err) { - currentBuild.result = "FAILURE" - slackSend color: '#ff0000', message: "${env.JOB_NAME} broken on macOS (<${env.BUILD_URL}|Open>)" - throw err - } - - - try { - checkout scm - sh 'git submodule update --init' - stage('macOS static lib, no stack, ipv6') { - sh 'make clean; make -j4 static_lib NO_STACK=1 LIBZT_IPV6=1; make tests' - } - } - catch (err) { - currentBuild.result = "FAILURE" - slackSend color: '#ff0000', message: "${env.JOB_NAME} broken on macOS (<${env.BUILD_URL}|Open>)" - throw err - } - - - try { - checkout scm - sh 'git submodule update --init' - stage('macOS static lib, no stack, ipv4, ipv6') { - sh 'make clean; make -j4 static_lib NO_STACK=1 LIBZT_IPV4=1 LIBZT_IPV6=1; make tests' - } - } - catch (err) { - currentBuild.result = "FAILURE" - slackSend color: '#ff0000', message: "${env.JOB_NAME} broken on macOS (<${env.BUILD_URL}|Open>)" - throw err - } - /* // picoTCP