This commit is contained in:
Thomas Breloff 2016-04-29 14:03:50 -04:00
parent 67ec31c75a
commit 672bf05856
2 changed files with 5 additions and 5 deletions

View File

@ -42,9 +42,9 @@ notifications:
email: true email: true
# uncomment the following lines to override the default test script # uncomment the following lines to override the default test script
script: script:
- julia test/travis_commands.jl - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi - julia -e 'Pkg.clone(pwd()); Pkg.build("Plots")'
# - julia -e 'Pkg.clone(pwd()); Pkg.build("Plots")' - julia test/travis_commands.jl
# - julia -e 'Pkg.clone("ImageMagick"); Pkg.build("ImageMagick")' # - julia -e 'Pkg.clone("ImageMagick"); Pkg.build("ImageMagick")'
# - julia -e 'Pkg.clone("GR"); Pkg.build("GR")' # - julia -e 'Pkg.clone("GR"); Pkg.build("GR")'
# # - julia -e 'Pkg.clone("https://github.com/tbreloff/ImageMagick.jl.git"); Pkg.checkout("ImageMagick","tb_write"); Pkg.build("ImageMagick")' # # - julia -e 'Pkg.clone("https://github.com/tbreloff/ImageMagick.jl.git"); Pkg.checkout("ImageMagick","tb_write"); Pkg.build("ImageMagick")'

View File

@ -1,5 +1,5 @@
Pkg.clone(pwd()) # Pkg.clone(pwd())
Pkg.build("Plots") # Pkg.build("Plots")
Pkg.clone("ImageMagick") Pkg.clone("ImageMagick")
Pkg.build("ImageMagick") Pkg.build("ImageMagick")