comparison mx/commands.py @ 4483:58ecb156a3e8

Gate : run fastdebug configuration before product in order to get a better log if the gate fails
author Gilles Duboscq <duboscq@ssw.jku.at>
date Tue, 07 Feb 2012 19:41:28 +0100
parents 7903b6c28f9c
children 8caa4f2df081 43b4e9201c29
comparison
equal deleted inserted replaced
4482:7903b6c28f9c 4483:58ecb156a3e8
547 547
548 t = Task('BuildJava') 548 t = Task('BuildJava')
549 build(['--no-native']) 549 build(['--no-native'])
550 tasks.append(t.stop()) 550 tasks.append(t.stop())
551 551
552 for vmbuild in ['product', 'fastdebug']: 552 for vmbuild in ['fastdebug', 'product']:
553 global _vmbuild 553 global _vmbuild
554 _vmbuild = vmbuild 554 _vmbuild = vmbuild
555 555
556 t = Task('BuildHotSpot:' + vmbuild) 556 t = Task('BuildHotSpot:' + vmbuild)
557 build(['--no-java', vmbuild]) 557 build(['--no-java', vmbuild])