Check what I just did for HttpCommon, only thing lacking is a Pkg.build
https://github.com/JuliaLang/HttpCommon.jl/blob/master/.travis.yml
script:
- julia -e 'Pkg.init(); Pkg.clone(pwd())'
- julia -e 'Pkg.test("HttpCommon", coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("HttpCommon")); Pkg.add("Coverage"); using Coverage;
Coveralls.submit(Coveralls.process_folder())'
This what I hope to see most packages look like now
On Monday, August 25, 2014 7:52:21 PM UTC-4, Elliot Saba wrote:
>
> I think that should be considered a bug, since clone() calls resolve()
> which calls build()..... but only for the stuff that resolve() thinks has
> changed. We should probably just call build() after resolve() in clone.
> -E
>