Skip to content

Commit 0995053

Browse files
Merge pull request #2 from ScottPJones/spj/test06
Add Travis CI & AppVeyor testing of v0.6, add test badges to README.md
2 parents 4537927 + ca36808 commit 0995053

File tree

3 files changed

+26
-1
lines changed

3 files changed

+26
-1
lines changed

.travis.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,13 @@ os:
44
- linux
55
- osx
66
julia:
7-
- release
7+
- 0.5
8+
- 0.6
89
- nightly
10+
matrix:
11+
allow_failures:
12+
- julia: 0.6
13+
- julia: nightly
914
notifications:
1015
email: false
1116
# uncomment the following lines to override the default test script

README.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
# MATLABDiffEq.jl
22

3+
[![Join the chat at https://gitter.im/JuliaDiffEq/Lobby](https://badges.gitter.im/JuliaDiffEq/Lobby.svg)](https://gitter.im/JuliaDiffEq/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4+
5+
[![Build Status](https://travis-ci.org/JuliaDiffEq/MATLABDiffEq.jl.svg?branch=master)](https://travis-ci.org/JuliaDiffEq/MATLABDiffEq.jl)
6+
7+
[![Coverage Status](https://coveralls.io/repos/github/JuliaDiffEq/MATLABDiffEq.jl/badge.svg)](https://coveralls.io/github/JuliaDiffEq/MATLABDiffEq.jl)
8+
[![codecov.io](http://codecov.io/github/ChrisRackauckas/MATLABDiffEq.jl/coverage.svg?branch=master)](http://codecov.io/github/ChrisRackauckas/MATLABDiffEq.jl?branch=master)
9+
10+
# Uncomment the next two lines if this package is registered
11+
#[![MATLABDiffEq](http://pkg.julialang.org/badges/MATLABDiffEq_0.5.svg)](http://pkg.julialang.org/?pkg=MATLABDiffEq)
12+
#[![MATLABDiffEq](http://pkg.julialang.org/badges/MATLABDiffEq_0.6.svg)](http://pkg.julialang.org/?pkg=MATLABDiffEq)
13+
314
MATLABDiffEq.jl is a common interface binding for the [MATLAB](https://www.mathworks.com/products/matlab.html)
15+
416
ordinary differential equation solvers. It uses the [MATLAB.jl](https://github.com/JuliaInterop/MATLAB.jl) interop in order to
517
send the differential equation over to MATLAB and solve it. Note that this
618
package requires the differential equation function to be defined using

appveyor.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,16 @@ environment:
22
matrix:
33
- JULIAVERSION: "julialang/bin/winnt/x86/0.5/julia-0.5-latest-win32.exe"
44
- JULIAVERSION: "julialang/bin/winnt/x64/0.5/julia-0.5-latest-win64.exe"
5+
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
6+
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
57
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
68
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
9+
matrix:
10+
allow_failures:
11+
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
12+
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
13+
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
14+
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
715

816
branches:
917
only:

0 commit comments

Comments
 (0)