Hi Mark,

What you probably saw was Travis's normal Maven build process. Travis 
always does the following in this order:

[Task #1] mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V 
(To install any missing dependencies into ~/.m2/ on the Travis server)

[Task #2] travis_retry mvn clean package license:check 
-Dmaven.test.skip=false
(To actually build & run tests..this step is prefixed by "travis_retry" 
as it will attempt to run this step up to three times if it fails)

If you look closely at the logs, you'll see that by default Task#1 is 
"collapsed" (as it isn't the real test).

So, looking at: https://travis-ci.org/DSpace/DSpace/builds/31933811

You'll see on Task#1 on Line 28 (with its results collapsed), and then 
Task#2 on Line 5353.

If you actively watch the build, it almost does *seem* like Travis 
builds twice...but the first time through is just to populate ~/.m2 and 
doesn't actually run any of the tests.

I hope that helps explain it.

- Tim


On 8/7/2014 12:17 PM, Mark H. Wood wrote:
> I just watched a Travis build run to successful completion, and then
> start a travis_retry.  ???
>
>    https://travis-ci.org/DSpace/DSpace/builds/31933811
>
>
>
> ------------------------------------------------------------------------------
> Infragistics Professional
> Build stunning WinForms apps today!
> Reboot your WinForms applications with our WinForms controls.
> Build a bridge from your legacy apps to the future.
> http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
>
>
>
> _______________________________________________
> Dspace-devel mailing list
> Dspace-devel@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/dspace-devel
>

------------------------------------------------------------------------------
Infragistics Professional
Build stunning WinForms apps today!
Reboot your WinForms applications with our WinForms controls. 
Build a bridge from your legacy apps to the future.
http://pubads.g.doubleclick.net/gampad/clk?id=153845071&iu=/4140/ostg.clktrk
_______________________________________________
Dspace-devel mailing list
Dspace-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dspace-devel

Reply via email to