diff --git a/.travis.yml b/.travis.yml index 4ec3c830..4f9a3be2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,21 +1,10 @@ -language: cpp -compiler: - - gcc +language: julia +os: + - linux +julia: + - release + - nightly notifications: email: false -env: - - JULIAVERSION="juliareleases" - - JULIAVERSION="julianightlies" -before_install: - - sudo add-apt-repository ppa:staticfloat/julia-deps -y - - sudo add-apt-repository ppa:staticfloat/${JULIAVERSION} -y - - sudo apt-get update -qq -y - - sudo apt-get install libpcre3-dev julia -y - - git config --global user.name "Travis User" - - git config --global user.email "travis@example.net" - - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi -script: - - julia -e 'versioninfo(); Pkg.init(); Pkg.clone(pwd())' - - julia -e 'Pkg.test("Graphs", coverage=true)' after_success: - julia -e 'cd(Pkg.dir("Graphs")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'