Skip to content

Commit 2781441

Browse files
Merge pull request #8 from ScottPJones/spj/test06
Add Travis CI & AppVeyor testing of v0.6, add test badges to README.md
2 parents 50dfb90 + 622d6ea commit 2781441

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# DiffEqDiffTools
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+
35
[![Build Status](https://travis-ci.org/JuliaDiffEq/DiffEqDiffTools.jl.svg?branch=master)](https://travis-ci.org/JuliaDiffEq/DiffEqDiffTools.jl)
46
[![Build status](https://ci.appveyor.com/api/projects/status/t3risc94d2jqipd6?svg=true)](https://ci.appveyor.com/project/ChrisRackauckas/diffeqdifftools-jl)
57
[![Coverage Status](https://coveralls.io/repos/ChrisRackauckas/DiffEqDiffTools.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/ChrisRackauckas/DiffEqDiffTools.jl?branch=master)
68
[![codecov.io](http://codecov.io/github/ChrisRackauckas/DiffEqDiffTools.jl/coverage.svg?branch=master)](http://codecov.io/github/ChrisRackauckas/DiffEqDiffTools.jl?branch=master)
79

10+
[![DiffEqDiffTools](http://pkg.julialang.org/badges/DiffEqDiffTools_0.5.svg)](http://pkg.julialang.org/?pkg=DiffEqDiffTools)
11+
[![DiffEqDiffTools](http://pkg.julialang.org/badges/DiffEqDiffTools_0.6.svg)](http://pkg.julialang.org/?pkg=DiffEqDiffTools)
12+
813
DiffEqDiffTools.jl is a component package in the DifferentialEquations ecosystem. It holds the common tools for taking derivatives, Jacobians, etc. and utilizing the traits from the ParameterizedFunctions when possible for increasing the speed of calculations. Users interested in using this functionality should check out [DifferentialEquations.jl](https://github.com/JuliaDiffEq/DifferentialEquations.jl/blob/master/src/DifferentialEquations.jl).
914

1015
Note: This is currently a work in progress. Anyways, it will be behind the scenes. If you're interesting in helping develop it, please contact Chris Rackauckas.

appveyor.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,18 @@ 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"
79

10+
matrix:
11+
allow_failures:
12+
- JULIAVERSION: "julialang/bin/winnt/x86/0.6/julia-0.6-latest-win32.exe"
13+
- JULIAVERSION: "julialang/bin/winnt/x64/0.6/julia-0.6-latest-win64.exe"
14+
- JULIAVERSION: "julianightlies/bin/winnt/x86/julia-latest-win32.exe"
15+
- JULIAVERSION: "julianightlies/bin/winnt/x64/julia-latest-win64.exe"
16+
817
branches:
918
only:
1019
- master

0 commit comments

Comments
 (0)