From 359808906918a77f696fe08a8db154e91c513411 Mon Sep 17 00:00:00 2001 From: Andriy Redko Date: Sat, 21 Sep 2024 10:09:02 -0400 Subject: [PATCH] Revert temporary excludion of some build agents from the label (due to persistent issues) --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4ed6fc9868c..67953a38625 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -15,7 +15,7 @@ pipeline { stages { stage('Prepare') { agent { - label 'ubuntu && !builds55 && !builds56 && !builds57 && !builds58 && !builds59 && !builds60' + label 'ubuntu' } stages { stage('Clean up') { @@ -28,7 +28,7 @@ pipeline { stage('Build') { matrix { agent { - label 'ubuntu && !builds55 && !builds56 && !builds57 && !builds58 && !builds59 && !builds60' + label 'ubuntu' } axes { axis { @@ -39,7 +39,7 @@ pipeline { stages { stage('JDK specific build') { agent { - label 'ubuntu && !builds55 && !builds56 && !builds57 && !builds58 && !builds59 && !builds60' + label 'ubuntu' } tools { jdk "${JAVA_VERSION}"