1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

Merge pull request #6418 from cgundogan/pr/jenkins_remove_notify

jenkins: remove extra githubNotify
This commit is contained in:
Sebastian Meiling 2017-01-19 00:18:18 +01:00 committed by GitHub
commit 8cb0b91cc2

11
Jenkinsfile vendored
View File

@ -9,8 +9,6 @@ def periph_tests = []
def other_tests = [] def other_tests = []
def unittests = [] def unittests = []
githubNotify context: 'Jenkins', description: 'Build started', status: 'PENDING', targetUrl: "${env.BUILD_URL}artifact"
/* stop running jobs */ /* stop running jobs */
abortPreviousBuilds() abortPreviousBuilds()
@ -148,17 +146,9 @@ stage("examples") {
abortOnError("examples failed") abortOnError("examples failed")
} }
def buildState = 'SUCCESS'
if (currentBuild.result == null) { if (currentBuild.result == null) {
currentBuild.result = 'SUCCESS' currentBuild.result = 'SUCCESS'
} }
else if (currentBuild.result != 'SUCCESS') {
buildState = 'FAILURE'
}
/* set commit status in GitHub with url pointing to logs manually (necessary workaround for now) */
githubNotify context: 'Jenkins', description: "${currentBuild.result}", status: buildState, targetUrl: "${env.BUILD_URL}artifact"
/* create a job */ /* create a job */
def make_build(label, board, desc, arg) def make_build(label, board, desc, arg)
@ -222,7 +212,6 @@ def abortPreviousBuilds()
def abortOnError(msg) def abortOnError(msg)
{ {
if ((currentBuild.result != null) && (currentBuild.result == 'FAILURE')) { if ((currentBuild.result != null) && (currentBuild.result == 'FAILURE')) {
githubNotify context: 'Jenkins', description: msg, status: 'FAILURE', targetUrl: "${env.BUILD_URL}artifact"
error msg error msg
} }
} }