blob: c0a0258087f25a34c3bf6d562f7f55b1ef1f5118 [file] [log] [blame]
// 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 ("Cleanup") {
sh returnStdout: true, script: """
rm -rf c3po
"""
}
stage ("Download the source code") {
sh returnStdout: true, script: """
git clone https://onf@ilpm.intel-research.net/bitbucket/scm/vccbbw/c3po.git
"""
}
stage ("We want to try something new") {
sh returnStdout: true, script: """
itswrong
"""
}
currentBuild.result = 'SUCCESS'
} catch (err) {
currentBuild.result = 'FAILURE'
step([$class: 'Mailer', notifyEveryUnstableBuild: true, recipients: "${notificationEmail}", sendToIndividuals: false])
}
echo "RESULT: ${currentBuild.result}"
}
}