Re: Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-15 Thread chris snow
It doesn't look like there is a workaround to the 50 minute max build time at the moment. I've documented the status in the wiki [1]. --- [1] https://cwiki.apache.org/confluence/display/STRATOS/Travis+Builds On Sat, Sep 13, 2014 at 5:30 AM, chris snow wrote: > Thanks Nirmal! > > The build is ge

Re: Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-12 Thread chris snow
Thanks Nirmal! The build is getting further now, but is hitting the Travis 50 min max build time limit [1]: " I'm sorry but your test run exceeded 50.0 minutes. One possible solution is to split up your test run. " I'm trying to figure out what the options are from here ... --- [1] https://tra

Re: Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-12 Thread Nirmal Fernando
Chris, may be you can add following arguments too. -XX:+UseConcMarkSweepGC -XX:MaxPermSize=1024m On Fri, Sep 12, 2014 at 3:15 PM, chris snow wrote: > Hi Guys, > > I'm hitting a "GC overhead limit exceeded" error on Travis [1]. My > build is doing this [2]: > > export MAVEN_OPTS="-Xms512m -Xmx2

Re: Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-12 Thread chris snow
Hi Guys, I'm hitting a "GC overhead limit exceeded" error on Travis [1]. My build is doing this [2]: export MAVEN_OPTS="-Xms512m -Xmx2048m -XX:MaxPermSize=512m -XX:ReservedCodeCacheSize=256m -XX:-UseGCOverheadLimit" mvn clean install -P cli-test integration-test Do you have an idea how this err

Re: Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-09 Thread chris snow
Hi Imesh, yes a .travis.yml file will be needed. It is a little tricky because our build outputs over 4 mb which is a Travis limit. However we can't turn output off because no output for 10 mins will make Travis think the build has failed. On 9 Sep 2014 16:09, "Imesh Gunaratne" wrote: > +1 A gr

Re: Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-09 Thread Imesh Gunaratne
+1 A great thought Chris! We will need to add a ".travis.yml" file I to the root of the project I guess. On Tue, Sep 9, 2014 at 2:41 AM, Isuru Haththotuwa wrote: > > > On Tue, Sep 9, 2014 at 12:07 PM, Nirmal Fernando > wrote: > >> Absolute +1 Chris. Will be very helpful. >> >> On Tue, Sep 9, 20

Re: Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-08 Thread Isuru Haththotuwa
On Tue, Sep 9, 2014 at 12:07 PM, Nirmal Fernando wrote: > Absolute +1 Chris. Will be very helpful. > > On Tue, Sep 9, 2014 at 11:26 AM, chris snow wrote: > >> Hi devs, >> >> What do you think about $subject? If PRs are automatically built, it may >> take some pressure off of those working on me

Re: Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-08 Thread Nirmal Fernando
Absolute +1 Chris. Will be very helpful. On Tue, Sep 9, 2014 at 11:26 AM, chris snow wrote: > Hi devs, > > What do you think about $subject? If PRs are automatically built, it may > take some pressure off of those working on merging the PR because they will > know upfront if the PR breaks the b

Setup Travis CI build for stratos to automate testing of GitHub PRs?

2014-09-08 Thread chris snow
Hi devs, What do you think about $subject? If PRs are automatically built, it may take some pressure off of those working on merging the PR because they will know upfront if the PR breaks the build. Cheers, Chris