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 b626987  mitigate crendentials issues
b626987 is described below

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

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

diff --git a/vars/asfStandardUtilitiesBuild.groovy 
b/vars/asfStandardUtilitiesBuild.groovy
index 430af60..9e239a8 100644
--- a/vars/asfStandardUtilitiesBuild.groovy
+++ b/vars/asfStandardUtilitiesBuild.groovy
@@ -51,14 +51,14 @@ def call(Map params = [:]) {
        }
         stages{
             stage("Build with default jdk (jdk8 if no parameters) ") {
-                agent { node { label 'ubuntu' } }
+                agent { node { label 'ubuntu && !nocredentials' } }
                 options { timeout(time: 120, unit: 'MINUTES') }                
                 steps{
                     mavenBuild( jdk, cmdline, mvnName, publishers,true)        
                 }
             }
             stage("Build on recent jdk") {
-                agent { node { label 'ubuntu' } }
+                agent { node { label 'ubuntu && !nocredentials' } }
                 options { timeout(time: 120, unit: 'MINUTES') }               
                 steps{
                    script {    


---------------------------------------------------------------------
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