Skip to content
This repository was archived by the owner on Oct 12, 2019. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ julia:
- nightly
notifications:
email: false
# uncomment the following lines to override the default test script
#script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --check-bounds=yes -e 'Pkg.clone(pwd()); Pkg.build("Assimp"); Pkg.test("Assimp"; coverage=true)'
script:
- git fetch --unshallow
- julia -e 'Pkg.clone(pwd())'
- julia -e 'Pkg.test("ImmutableArrays", coverage=true)'
after_success:
- julia -e 'cd(Pkg.dir("ImmutableArrays")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

Statically-sized immutable vectors and matrices.

- Travis: [![Build Status](https://travis-ci.org/twadleigh/ImmutableArrays.jl.png?branch=master)](https://travis-ci.org/twadleigh/ImmutableArrays.jl)
- Juila 0.2: [![ImmutableArrays](http://pkg.julialang.org/badges/ImmutableArrays_0.2.svg)](http://pkg.julialang.org/?pkg=ImmutableArrays&ver=0.2)
- Travis: [![Build Status](https://travis-ci.org/JuliaGeometry/ImmutableArrays.jl.svg?branch=master)](https://travis-ci.org/JuliaGeometry/ImmutableArrays.jl)
- Coveralls: [![Coverage Status](https://coveralls.io/repos/JuliaGeometry/ImmutableArrays.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/JuliaGeometry/ImmutableArrays.jl?branch=master)
- Julia 0.3: [![ImmutableArrays](http://pkg.julialang.org/badges/ImmutableArrays_0.3.svg)](http://pkg.julialang.org/?pkg=ImmutableArrays&ver=0.3)
- Julia 0.4: [![ImmutableArrays](http://pkg.julialang.org/badges/ImmutableArrays_0.4.svg)](http://pkg.julialang.org/?pkg=ImmutableArrays&ver=0.4)

## Features

Expand All @@ -24,3 +25,6 @@ Statically-sized immutable vectors and matrices.
[Jay Weisskopf's gist](https://gist.github.com/jayschwa/5250636).
- Travis CI integration by Jay Weisskopf (@jayschwa).
- Additional feedback and testing provided by Olli Wilkman (@dronir).

## License
This package is available under the MIT "Expat" License. See [LICENSE.md](./LICENSE.md).
1 change: 1 addition & 0 deletions REQUIRE
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
julia 0.3
Compat