Re: [hibernate-dev] [Search] Travis support

2016-03-03 Thread Mark Paluch
It’s a setting in the .travis.yml file. TravisCI creates multiple jobs (one per JDK) itself and runs the whole build using the configured JDKs. See https://docs.travis-ci.com/user/languages/java#Testing-Against-Multiple-JDKs

Re: [hibernate-dev] [Search] Travis support

2016-03-03 Thread Gunnar Morling
Interesting, do you know how do they do that? Run (unit) tests in a separate step after all modules has been compiled? It's notoriously hard to do with Maven, so I'm wondering how it's done. 2016-03-03 0:54 GMT+01:00 Sanne Grinovero : > I just learned that Travis makes it easy to compile with one

Re: [hibernate-dev] [Search] Travis support

2016-03-02 Thread Sanne Grinovero
I just learned that Travis makes it easy to compile with one JDK and then do something else with a different JDK - like running tests. That's very nice. With Jenkins we have to workaround such things by creating multiple jobs and linking them together as dependencies. On 2 February 2016 at 14:46,

Re: [hibernate-dev] [Search] Travis support

2016-02-02 Thread Guillaume Smet
Hi, FWIW, I also added Travis support to OGM (mostly to see if we could do it easily with all the NoSQL databases supported) here: https://travis-ci.org/gsmet/hibernate-ogm/ https://github.com/gsmet/hibernate-ogm/blob/travis-support/.travis.yml What I also find interesting in Travis is that you c

Re: [hibernate-dev] [Search] Travis support

2016-01-28 Thread Guillaume Smet
Hi Sanne, On Thu, Jan 28, 2016 at 3:23 PM, Sanne Grinovero wrote: > I am a bit skeptical as we have CI working already on ci.hibernate.org > and having limited people we can't really afford to fix things which > already work. > I perfectly understand that. I wanted to experiment it without both

Re: [hibernate-dev] [Search] Travis support

2016-01-28 Thread Guillaume Smet
Yep: https://travis-ci.org/gsmet/hibernate-search As already mentioned, if you want to get the results of the test, you can push them to an AWS S3 bucket. -- Guillaume ___ hibernate-dev mailing list hibernate-dev@lists.jboss.org https://lists.jboss.org

Re: [hibernate-dev] [Search] Travis support

2016-01-28 Thread Steve Ebersole
I do not know how to quantify "popularity", but I do know I have seen lots of projects using travis for commit validation. TBH my only concern would be access to the results. And that is more an unknown. As I have never used Travis CI I do not know how its UI works. Guillaume do you have project

Re: [hibernate-dev] [Search] Travis support

2016-01-28 Thread Sanne Grinovero
Hi Guillaume, I am a bit skeptical as we have CI working already on ci.hibernate.org and having limited people we can't really afford to fix things which already work. That said, this does look good, and it's certainly positive that we can get some free computation resources from travis.org as our