From 682d2f1e0163fe29899fcb3fb8eead29d9445d9b Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 17 Sep 2016 09:09:30 +0100 Subject: [PATCH] Remove additional github commit status update from jenkins. There is a status update already, which I didn't see during earlier tests. --- Jenkinsfile | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a872e486..373a1e42 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -3,7 +3,6 @@ node('freebsd') { // freebsd 10.3 + pkg install git openjdk cmake icu pkgconf swig30 python3 timestamps { - update_github_status() try { timeout(time: 30, unit: 'MINUTES') { def srcdir = pwd() @@ -36,12 +35,5 @@ node('freebsd') { echo "Error: ${err}" currentBuild.result = 'FAILURE' } - update_github_status() } } - -def update_github_status() { - step([$class: 'GitHubCommitStatusSetter', - contextSource: [$class: 'ManuallyEnteredCommitContextSource', - context: 'continuous-integration/jenkins']]) -}