Skip to content

Commit 449a06c

Browse files
committed
Merge pull request #27 from Keno/yyc/travis-url
Update travis settings and url in README
2 parents 0f9db9e + de41274 commit 449a06c

File tree

2 files changed

+9
-13
lines changed

2 files changed

+9
-13
lines changed

.travis.yml

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
1-
language: cpp
2-
compiler:
3-
- clang
1+
language: julia
2+
os:
3+
- linux
4+
- osx
5+
julia:
6+
- 0.3
7+
- 0.4
8+
- nightly
49
notifications:
510
email: false
6-
before_install:
7-
- sudo add-apt-repository ppa:staticfloat/julia-deps -y
8-
- sudo add-apt-repository ppa:staticfloat/julianightlies -y
9-
- sudo apt-get update -qq -y
10-
- sudo apt-get install libpcre3-dev julia -y
11-
script:
12-
- julia -e 'Pkg.init(); run(`ln -s $(pwd()) $(Pkg.dir())/Polynomial`); Pkg.resolve()'
13-
- julia -e 'using Polynomial; @assert isdefined(:Polynomial); @assert typeof(Polynomial) === Module'
14-
- julia test/tests.jl

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Basic arithmetic, integration, differentiation, evaluation, and root finding over dense univariate polynomials.
44

5-
[![Build Status](https://travis-ci.org/vtjnash/Polynomial.jl.png?branch=master)](https://travis-ci.org/vtjnash/Polynomial.jl)
5+
[![Build Status](https://travis-ci.org/Keno/Polynomials.jl.png?branch=master)](https://travis-ci.org/Keno/Polynomials.jl)
66

77
#### Poly{T<:Number}(a::Vector)
88
Construct a polynomial from its coefficients, lowest order first.

0 commit comments

Comments
 (0)