Skip to content

Commit

Permalink
setup CI settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Evizero committed May 5, 2017
1 parent 5b54b40 commit 9b0beb2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
_build/
_static/
_templates
12 changes: 5 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,14 @@ os:
- linux
- osx
julia:
- release
- 0.5
- 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 -e 'Pkg.clone(pwd()); Pkg.build("Augmentor"); Pkg.test("Augmentor"; coverage=true)'
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --color=yes -e 'Pkg.clone(pwd()); Pkg.build("Augmentor"); Pkg.test("Augmentor"; coverage=VERSION >= v"0.6.0-alpha")'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("Augmentor")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("Augmentor")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
- julia -e 'if VERSION >= v"0.6.0-alpha" cd(Pkg.dir("Augmentor")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder()); end'

This comment has been minimized.

Copy link
@tkelman

tkelman May 21, 2017

there is no such thing as 0.6.0-alpha, it was 0.6.0-pre.alpha

This comment has been minimized.

Copy link
@Evizero

Evizero May 21, 2017

Author Owner

yes, right. will fix

2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
[![Build Status](https://travis-ci.org/Evizero/Augmentor.jl.svg?branch=master)](https://travis-ci.org/Evizero/Augmentor.jl)

[![Coverage Status](https://coveralls.io/repos/Evizero/Augmentor.jl/badge.svg?branch=master&service=github)](https://coveralls.io/github/Evizero/Augmentor.jl?branch=master)

[![codecov.io](http://codecov.io/github/Evizero/Augmentor.jl/coverage.svg?branch=master)](http://codecov.io/github/Evizero/Augmentor.jl?branch=master)
9 changes: 5 additions & 4 deletions REQUIRE
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
julia 0.5
ImageCore
ImageCore 0.1.2
ImageTransformations
CoordinateTransformations
CoordinateTransformations 0.4.0
Interpolations 0.6
Rotations
StaticArrays
OffsetArrays
Interpolations
ColorTypes
IdentityRanges
ColorTypes 0.4
Compat 0.19

0 comments on commit 9b0beb2

Please sign in to comment.