This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.5.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit ae12d8136cc6d6ed05b301060d892222d546d6d4 Author: Andriy Redko <[email protected]> AuthorDate: Sun Mar 24 10:00:09 2024 -0400 Temporary exclude some build agents from the label (due to persistent issues) (cherry picked from commit b93d78106c1df4c0689eb8e10bdc66aa29277ec0) --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 982c951563..e082cdc150 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ pipeline { stages { stage('Prepare') { agent { - label 'ubuntu' + label 'ubuntu && !builds55 && !builds56 && !builds57 && !builds58 && !builds59 && !builds60' } stages { stage('Clean up') { @@ -28,7 +28,7 @@ pipeline { stage('Build') { matrix { agent { - label 'ubuntu' + label 'ubuntu && !builds55 && !builds56 && !builds57 && !builds58 && !builds59 && !builds60' } axes { axis { @@ -39,7 +39,7 @@ pipeline { stages { stage('JDK specific build') { agent { - label 'ubuntu' + label 'ubuntu && !builds55 && !builds56 && !builds57 && !builds58 && !builds59 && !builds60' } tools { jdk "${JAVA_VERSION}"
