This is an automated email from the ASF dual-hosted git repository.

martin_s pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/archiva-jenkins-lib.git


The following commit(s) were added to refs/heads/master by this push:
     new da17c68  Deactivating H26 node, because OOM errors
da17c68 is described below

commit da17c68799623a270103c84e73616307b265726f
Author: Martin Stockhammer <[email protected]>
AuthorDate: Wed Dec 25 11:18:49 2019 +0100

    Deactivating H26 node, because OOM errors
---
 vars/asfStandardBuild.groovy | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index 301edbd..f9935f8 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -54,10 +54,14 @@ def call(Map params = [:]) {
 
 
   pipeline {
-    agent any
+    agent {
+      node {
+        label 'ubuntu && !H26'
+      }
+    }
     stages{
       stage("Build"){
-        agent { node { label 'ubuntu' } }
+        agent { node { label 'ubuntu && !H26' } }
         options { timeout(time: 120, unit: 'MINUTES') }
         steps{
           mavenBuild( jdk, cmdline, mvnName, publishers)

Reply via email to