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

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


The following commit(s) were added to refs/heads/master by this push:
     new c2d792b  mitigate credentials issues
c2d792b is described below

commit c2d792b1960de569abf4606e96d5db7b42c441f2
Author: Eric Barboni <[email protected]>
AuthorDate: Tue Jul 11 10:56:35 2023 +0200

    mitigate credentials issues
---
 vars/asfStandardBuild.groovy | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/vars/asfStandardBuild.groovy b/vars/asfStandardBuild.groovy
index d2d3160..1da546d 100644
--- a/vars/asfStandardBuild.groovy
+++ b/vars/asfStandardBuild.groovy
@@ -54,7 +54,7 @@ def call(Map params = [:]) {
        }
         stages{
             stage("Build with xvfb") {
-                agent { node { label 'ubuntu' } }
+                agent { node { label 'ubuntu && !nocredentials' } }
                 options { timeout(time: 120, unit: 'MINUTES') }
                 when {expression {
                         return xvfb
@@ -67,7 +67,7 @@ def call(Map params = [:]) {
                 }
             }
             stage("Build") {
-                agent { node { label 'ubuntu' } }
+                agent { node { label 'ubuntu && !nocredentials' } }
                 options { timeout(time: 120, unit: 'MINUTES') }
                 when {expression {
                         return !xvfb


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

Reply via email to