Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-19 15:50:10 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-07-19 15:50:10 +0300
commit7784f20a268e643f60aa2f6a223ace3cc97d5276 (patch)
tree411bec694ecfca4eea755304a59cc4b89db87bcd /scripts
parent8b2141a741a6348a363a75e91c2a993ec280c1e2 (diff)
[ci] Don't require master node for reportGitHubStatus method
In some jobs we use throttle() logic which would mean only one job can execute on master, blocking other jobs in the meantime. We don't really care which node executes this so let Jenkins pick one.
Diffstat (limited to 'scripts')
-rw-r--r--scripts/ci/pipeline/utils.groovy2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/pipeline/utils.groovy b/scripts/ci/pipeline/utils.groovy
index 2b2efd4d381..a495bbb08f2 100644
--- a/scripts/ci/pipeline/utils.groovy
+++ b/scripts/ci/pipeline/utils.groovy
@@ -1,5 +1,5 @@
def reportGitHubStatus(commitHash, context, backref, statusResult, statusResultMessage) {
- node("master") {
+ node {
step([
$class: 'GitHubCommitStatusSetter',
commitShaSource: [$class: "ManuallyEnteredShaSource", sha: commitHash],