diff mx/mx_graal.py @ 18108:cc1d1fc17338

gate: don't build server-nograal on windows (the build configuration doesn't exist yet)
author Bernhard Urban <bernhard.urban@jku.at>
date Thu, 16 Oct 2014 14:29:01 +0200
parents 2579d0ac7ad6
children 4ccabc85a62a
line wrap: on
line diff
--- a/mx/mx_graal.py	Thu Oct 16 14:23:04 2014 +0200
+++ b/mx/mx_graal.py	Thu Oct 16 14:29:01 2014 +0200
@@ -1462,8 +1462,8 @@
     if args.buildNonGraal:
         with Task('BuildHotSpotVarieties', tasks):
             buildvms(['--vms', 'client,server', '--builds', 'fastdebug,product'])
-            buildvms(['--vms', 'server-nograal', '--builds', 'product'])
-            buildvms(['--vms', 'server-nograal', '--builds', 'optimized'])
+            if mx.get_os() not in ['windows', 'cygwin']:
+                buildvms(['--vms', 'server-nograal', '--builds', 'product,optimized'])
 
         for vmbuild in ['product', 'fastdebug']:
             for theVm in ['client', 'server']: