.travis.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ## Documentation: http://docs.travis-ci.com/user/languages/julia/
  2. language: julia
  3. os:
  4. - linux
  5. - osx
  6. julia:
  7. - 0.7
  8. - 1.0
  9. - nightly
  10. notifications:
  11. email: false
  12. git:
  13. depth: 99999999
  14. ## uncomment the following lines to allow failures on nightly julia
  15. ## (tests will run but not make your overall status red)
  16. matrix:
  17. allow_failures:
  18. - julia: nightly
  19. ## uncomment and modify the following lines to manually install system packages
  20. #addons:
  21. # apt: # apt-get for linux
  22. # packages:
  23. # - gfortran
  24. #before_script: # homebrew for mac
  25. # - if [ $TRAVIS_OS_NAME = osx ]; then brew install gcc; fi
  26. ## uncomment the following lines to override the default test script
  27. #script:
  28. # - julia -e 'Pkg.clone(pwd()); Pkg.build("ReduceAlgebra"); Pkg.test("ReduceAlgebra")'
  29. #after_success:
  30. # push coverage results to Coveralls
  31. #- julia -e 'cd(Pkg.dir("ReduceAlgebra")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
  32. # push coverage results to Codecov
  33. #- julia -e 'cd(Pkg.dir("ReduceAlgebra")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'