Skip to content

Commit

Permalink
Add Win32 & x64_linux_largeHeap (#355)
Browse files Browse the repository at this point in the history
* Add Win32 & LinuxLargeHeap

Signed-off-by: smlambert <slambert@gmail.com>

* Fix typo

Signed-off-by: smlambert <slambert@gmail.com>
  • Loading branch information
Shelley Lambert authored and karianna committed Jun 5, 2018
1 parent bff6b34 commit c769177
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pipelines/openjdk8_openj9_nightly_pipeline.groovy
Original file line number Diff line number Diff line change
@@ -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++ ) {
Expand Down

0 comments on commit c769177

Please sign in to comment.