diff --git a/pipelines/build/common/openjdk_build_pipeline.groovy b/pipelines/build/common/openjdk_build_pipeline.groovy index 397eea04c..6edfa4c45 100644 --- a/pipelines/build/common/openjdk_build_pipeline.groovy +++ b/pipelines/build/common/openjdk_build_pipeline.groovy @@ -2693,13 +2693,11 @@ class Build { platform = 'x86-64_' + buildConfig.TARGET_OS } else { platform = buildConfig.ARCHITECTURE + '_' + buildConfig.TARGET_OS - } - if ( !(platform =='aarch64_windows') ) { - if ( !(buildConfig.JAVA_TO_BUILD == 'jdk8u' && platform == 's390x_linux') ) { - context.echo "Remote trigger Eclipse Temurin AQA_Test_Pipeline job with ${platform} ${buildConfig.JAVA_TO_BUILD}" - def remoteTargets = remoteTriggerJckTests(platform, filename) - context.parallel remoteTargets - } + } + if ( !(buildConfig.JAVA_TO_BUILD == 'jdk8u' && platform == 's390x_linux') ) { + context.echo "Remote trigger Eclipse Temurin AQA_Test_Pipeline job with ${platform} ${buildConfig.JAVA_TO_BUILD}" + def remoteTargets = remoteTriggerJckTests(platform, filename) + context.parallel remoteTargets } }