That is fast :) I'm using an 18 month old well spec'd windows laptop, It takes me about 21 mins to do a full build of everything (with swf support) in maven followed by ant (with tests), sequentially.
If I just build the framework in maven (which does not have the unit tests support yet, in any case), it is 2 min 59 secs on my machine, which is still slower than your corresponding ant build. As a comparison, maven ought to be quicker still than your ant build (without tests) on your machine, because iirc it keeps the same compiler instance in memory for all the swc builds instead of stop/start as it does with ant. On Tue, Nov 7, 2023 at 5:08 AM Harbs <harbs.li...@gmail.com> wrote: > I just set up a new Mac Studio. (M2 Ultra 24 core) > > I wanted to test how quickly it does a full build of Royale. > > I’m impressed. It’s what I was hoping for… > > I built with swf support. > > ant all (building everything including the compiler and all tests) took 6 > minutes and 38 seconds. > > ant (just the framework code without the compiler) took 5 minutes 18 > seconds > > ant -Dskip-tests=true (just framework no tests) took 2 minutes 37 seconds! > > B-) > > Harbs