Deactivating H26 node, because OOM errors
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 @@
 
 
   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)