From 07d6b588675c7b8c9466c499791f474c6c0bc7fc Mon Sep 17 00:00:00 2001 From: Joseph Henry Date: Fri, 28 Oct 2016 17:00:20 -0700 Subject: [PATCH] fixed case of Jenkinsfile --- Jenkinsfile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Jenkinsfile diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..290c194 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,17 @@ +#!/usr/bin/env groovy + +parallel 'centos7': { + node('centos7') { + try { + checkout scm + stage('Build centos7') { + sh 'make -f make-linux.mk linux_service_and_intercept SDK_LWIP=1 SDK_IPV4=1' + } + } + catch (err) { + currentBuild.result = "FAILURE" + slackSend color: '#ff0000', message: "${env.JOB_NAME} broken on centos7 (<${env.BUILD_URL}|Open>)" + throw err + } + } +} \ No newline at end of file