From c7691779b75c861137ba596095cefdb98792c1b9 Mon Sep 17 00:00:00 2001 From: Shelley Lambert Date: Tue, 5 Jun 2018 04:54:34 -0400 Subject: [PATCH] Add Win32 & x64_linux_largeHeap (#355) * Add Win32 & LinuxLargeHeap Signed-off-by: smlambert * Fix typo Signed-off-by: smlambert --- pipelines/openjdk8_openj9_nightly_pipeline.groovy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pipelines/openjdk8_openj9_nightly_pipeline.groovy b/pipelines/openjdk8_openj9_nightly_pipeline.groovy index 4c8f71063..ecd55cc7e 100644 --- a/pipelines/openjdk8_openj9_nightly_pipeline.groovy +++ b/pipelines/openjdk8_openj9_nightly_pipeline.groovy @@ -1,12 +1,14 @@ println "building ${JDK_VERSION}" -def buildPlatforms = ['Linux', 'zLinux', 'ppc64le', 'AIX', 'Windows'] +def buildPlatforms = ['Linux', 'zLinux', 'ppc64le', 'AIX', 'Windows', 'Windows32', 'LinuxXL'] def buildMaps = [:] buildMaps['Linux'] = [test:['openjdktest', 'systemtest', 'perftest', 'externaltest'], ArchOSs:'x86-64_linux'] +buildMaps['LinuxXL'] = [test:['openjdktest'], ArchOSs:'x86-64_linux_largeHeap'] buildMaps['zLinux'] = [test:['openjdktest', 'systemtest'], ArchOSs:'s390x_linux'] buildMaps['ppc64le'] = [test:['openjdktest', 'systemtest'], ArchOSs:'ppc64le_linux'] buildMaps['AIX'] = [test:false, ArchOSs:'ppc64_aix'] buildMaps['Windows'] = [test:['openjdktest'], ArchOSs:'x86-64_windows'] +buildMaps['Windows32'] = [test:['openjdktest'], ArchOSs:'x86-32_windows'] def jobs = [:] for ( int i = 0; i < buildPlatforms.size(); i++ ) {