Adding first intel-mcord-vms-build-jenkinsfile
Change-Id: I5b5ec51851c7897fa405cf77be6c6dfb43326fe4
diff --git a/Jenkinsfile-mcord-new-build-vms b/Jenkinsfile-mcord-new-build-vms
new file mode 100644
index 0000000..9540ca7
--- /dev/null
+++ b/Jenkinsfile-mcord-new-build-vms
@@ -0,0 +1,34 @@
+// Copyright 2017-present Open Networking Foundation
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+node ("${TestNodeName}") {
+ timeout (100) {
+ try {
+ stage ("Download the source code") {
+ withCredentials([sshUserPrivateKey(credentialsId: 'ae7c1502-7d2d-4eed-8627-cafb6f68f44f', keyFileVariable: 'KEY')]) {
+ sh returnStdout: true, script: """
+ chmod 600 $KEY && eval `ssh-agent -s` && ssh-add $KEY &&
+ ssh-keyscan -p 7999 ilpm.intel-research.net >> ~/.ssh/known_hosts &&
+ git clone -b ${branch} ssh://onf@ilpm.intel-research.net:7999/vccbbw/c3po.git
+ """
+ }
+ }
+ currentBuild.result = 'SUCCESS'
+ } catch (err) {
+ currentBuild.result = 'FAILURE'
+ step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
+ }
+ echo "RESULT: ${currentBuild.result}"
+ }
+}