Skip to content

Commit

Permalink
Modernize .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
simonster committed Feb 2, 2015
1 parent a71af1f commit a2e830c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
25 changes: 12 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
language: cpp
compiler:
- gcc
language: julia
os:
- linux
- osx
julia:
- release
- nightly
notifications:
email: false
before_install:
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
- sudo add-apt-repository ppa:staticfloat/julianightlies -y
- sudo apt-get update -qq -y
- sudo apt-get install julia -y
- git config --global user.name "Travis User"
- git config --global user.email "travis@example.net"
email: false
script:
- julia -e 'versioninfo(); Pkg.init(); run(`ln -s $(pwd()) $(Pkg.dir("Memoize"))`); Pkg.pin("Memoize"); Pkg.resolve()'
- julia test/runtests.jl
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("Memoize"); Pkg.test("Memoize"; coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("Memoize")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Memoize.jl

[![Build Status](https://travis-ci.org/simonster/Memoize.jl.png?branch=master)](https://travis-ci.org/simonster/Memoize.jl)
[![Build Status](https://travis-ci.org/simonster/Memoize.jl.png?branch=master)](https://travis-ci.org/simonster/Memoize.jl) [![Coverage Status](http://img.shields.io/coveralls/JuliaStats/Memoize.jl.svg)](https://coveralls.io/r/JuliaStats/Memoize.jl)

Easy memoization for Julia.

Expand Down

0 comments on commit a2e830c

Please sign in to comment.