# HG changeset patch # User Bernhard Urban # Date 1413462541 -7200 # Node ID cc1d1fc17338e9f00bcbd2a4bf67615a34ab7420 # Parent 2579d0ac7ad694b707d09167613c5a90c8b416d3 gate: don't build server-nograal on windows (the build configuration doesn't exist yet) diff -r 2579d0ac7ad6 -r cc1d1fc17338 mx/mx_graal.py --- 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']: