And I've already stolen Iain's work for Dates.jl <https://github.com/quinnj/Dates.jl/blob/master/.travis.yml> and Datetime.jl <https://github.com/quinnj/Datetime.jl/blob/master/.travis.yml>. +1 for consistent travis configs!
On Mon, Aug 25, 2014 at 9:46 PM, Iain Dunning <[email protected]> wrote: > The symlink style needs to go away, I think. If you see something, say > something, and hopefully Travis configs will become a happier place. > > > On Monday, August 25, 2014 9:45:42 PM UTC-4, Iain Dunning wrote: >> >> 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 >>> >>
