From 6bb21e697371e0e01cef7d6d6f8c1fe3927e1299 Mon Sep 17 00:00:00 2001 From: George Adams Date: Fri, 3 May 2024 11:25:00 +0100 Subject: [PATCH] don't pass node label to windows installer job --- pipelines/build/common/openjdk_build_pipeline.groovy | 3 --- 1 file changed, 3 deletions(-) diff --git a/pipelines/build/common/openjdk_build_pipeline.groovy b/pipelines/build/common/openjdk_build_pipeline.groovy index 78f12aabf..3c5567a0e 100644 --- a/pipelines/build/common/openjdk_build_pipeline.groovy +++ b/pipelines/build/common/openjdk_build_pipeline.groovy @@ -796,8 +796,6 @@ class Build { We run two jobs if we have a JRE (see https://github.com/adoptium/temurin-build/issues/1751). */ private void buildWindowsInstaller(VersionInfo versionData, String filter, String category) { - def nodeFilter = "${buildConfig.TARGET_OS}&&wix" - def buildNumber = versionData.build if (versionData.major == 8) { @@ -829,7 +827,6 @@ class Build { context.string(name: 'PRODUCT_CATEGORY', value: "${category}"), context.string(name: 'JVM', value: "${buildConfig.VARIANT}"), context.string(name: 'ARCH', value: "${INSTALLER_ARCH}"), - ['$class': 'LabelParameterValue', name: 'NODE_LABEL', label: "${nodeFilter}"] ] context.copyArtifacts( projectName: 'build-scripts/release/create_installer_windows',