Skip to content

Commit

Permalink
Merge pull request JuliaLang#9200 from jayschwa/patch-1
Browse files Browse the repository at this point in the history
Pkg.generate: call Pkg.build() in `.travis.yml`
  • Loading branch information
StefanKarpinski committed Nov 30, 2014
2 parents af4688b + 3077090 commit 13dfa3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion base/pkg/generate.jl
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function travis(pkg::AbstractString; force::Bool=false)
- sudo apt-get install libpcre3-dev julia -y
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
script:
- julia --check-bounds=yes -e 'versioninfo(); Pkg.init(); Pkg.clone(pwd()); Pkg.test("$pkg")'
- julia --check-bounds=yes -e 'versioninfo(); Pkg.init(); Pkg.clone(pwd()); Pkg.build("$pkg"); Pkg.test("$pkg")'
""")
end
end
Expand Down

0 comments on commit 13dfa3c

Please sign in to comment.